This tool transforms CSV data into a nested hierarchical structure based on specified columns.
CSV Input:
Hierarchy: Database Table Column
JSON Output:
{
"SalesDB": {
"Customers": {
"CustomerID": { "DataType": "INT", "Nullable": "NO" },
"Name": { "DataType": "VARCHAR", "Nullable": "YES" }
},
"Orders": {
"OrderID": { "DataType": "INT", "Nullable": "NO" }
}
}
}