Processed entirely in your browser — JSON never leaves your device.
SQL Dialect
Output Mode
Convert JSON objects or arrays into SQL INSERT statements — supports MySQL, PostgreSQL, Oracle, and MSSQL. Generates CREATE TABLE and batch INSERTs with dialect-correct quoting and type inference. All processing happens in your browser; nothing is sent to any server.
The converter applies dialect-correct identifier quoting — backticks for MySQL/MariaDB, double quotes for PostgreSQL and Oracle, and square brackets for MSSQL. Booleans are rendered as TRUE/FALSE for MySQL and PostgreSQL, and as 1/0 for Oracle and MSSQL. Nested objects and arrays are stored as serialized JSON strings in the appropriate JSON column type (JSONB, JSON, CLOB, or NVARCHAR(MAX)).
Input JSON
[
{ "id": 1, "name": "Alice", "active": true },
{ "id": 2, "name": "Bob", "active": false }
]PostgreSQL output (INSERT only)
INSERT INTO "users" ("id", "name", "active") VALUES (1, 'Alice', TRUE);
INSERT INTO "users" ("id", "name", "active") VALUES (2, 'Bob', FALSE);Selecting Oracle dialect with batching enabled generates INSERT ALL … SELECT * FROM dual syntax instead.