How to convert SQL INSERT to TSV
Before you start
Paste one or more INSERT INTO … VALUES statements that use the same columns and portable literal values.
Accepted: .sql · application/sql, text/plain- Paste valid SQL INSERT content, choose files, or drag them onto the drop zone.
- Confirm the detected format. Mixed-format batches are flagged before conversion.
- Select “Convert on this device.” Produces previewable TSV text and a correctly named download.
How this converter behaves
Rows and columns are normalized through an in-memory workbook, then written as the requested table or workbook format.
What happens to your data?
The conversion engine runs in this browser tab. OmniCastConverter has no upload API and never sends your content, file name, or converted result to a server.
Fidelity and limitations
This route is classified as structural. The converter preserves meaning and structure supported by both formats.
- SQL support is intentionally limited to portable INSERT INTO … (columns) VALUES (…) statements; generated identifiers use ANSI double-quote escaping and no SQL is executed.
Try a valid example
The “Use example” action in the workbench loads this exact input. Produces previewable TSV text and a correctly named download.
INSERT INTO "people" ("name", "score") VALUES ('Ada', 42), ('Lin', 37);