Search for a command to run...
Generate CREATE TABLE and INSERT statements from a JSON array. Supports PostgreSQL, MySQL, and SQLite dialects.
Types are inferred from the first row: integer → INTEGER/BIGINT, decimal number → NUMERIC/DOUBLE, boolean → BOOLEAN/TINYINT(1), string → TEXT. Nested objects and arrays become TEXT or JSON depending on dialect.
All keys across all objects are unioned into the column list. Missing values in a row become NULL in the INSERT.