Skip to main content
Back to Home

Migrate a Legacy SQL Export to a Spreadsheet

Inherited a database dump's INSERT statements and need the data in a real spreadsheet for review or a non-technical teammate? Here's how, without setting up a database.

  1. Upload the .sql file containing INSERT INTO statements and convert it to CSV — no database needs to be running, since the tool reads the literal values directly from the SQL text. Open SQL to CSV
  2. If the receiving system or teammate needs JSON instead of CSV, convert the CSV one more step to get a JSON array of the same records. Open CSV to JSON