SQL → CSV
Paste a result set (tabular with header row). Get clean RFC 4180 CSV.
Paste tabular output (CSV-like)
Input
Output
Frequently Asked Questions
+What does the SQL to CSV converter do?
It takes a tabular query result (the kind you copy out of a SQL client) with a header row and converts each row to CSV. Useful for exporting query output, seeding tests, or feeding other tools.
+Does my data leave my browser?
No. Parsing and conversion happen entirely client-side. Nothing is uploaded or logged.
+What input format is expected?
Paste a CSV-like block: the first line is the header (column names), followed by one row per line. Values containing commas or quotes should be double-quoted, following RFC 4180.
+How are data types handled?
Everything is emitted as strings by default. If you need typed CSV output (numbers, booleans, nulls), cast values in your SQL before exporting.
+Is there a size limit?
No hard limit. Tens of thousands of rows work fine; extremely large inputs may feel slow since all processing is in the browser.
Advertisement