Skip to content

SQL ↔ JSON

New

Convert INSERT statements to JSON rows and JSON arrays back to SQL INSERT statements (best-effort).

  • Processed in your browser
  • Privacy-first
  • No account required
  • Nothing uploaded by default

Examples

SQL to JSON

INSERT INTO users (id, name) VALUES (1, 'Ada');
{
  "table": "users",
  "rows": [{ "id": 1, "name": "Ada" }]
}