Shortcuts:⌘ KSearch?HelpD MDark modeG TAll tools
0 rows · 0 columns
Frequently Asked Questions
Can it convert multi-row INSERT statements into one CSV file?
Yes. It parses one or many INSERT INTO ... VALUES statements and merges all rows into a single CSV output.
How does it handle commas or quotes inside SQL string values?
The CSV builder quotes fields when needed and doubles embedded double quotes, so CSV output stays parseable.
Can I choose something other than comma as the output delimiter?
Yes. You can switch the CSV output to comma, semicolon, tab, or pipe.
Does SQL NULL become the word NULL in CSV?
No. NULL values are exported as empty CSV fields.
Why does it reject my INSERT statement?
The parser requires an explicit column list and VALUES tuples with matching lengths. INSERT variants without that structure are out of scope for this tool.