CSV to SQL INSERT
Build INSERT statements from a CSV file for quick database seeding. Local, free, no signup.
Scan to open on your phone
Point your phone camera at the code to open this tool.
Build INSERT statements from a CSV file for quick database seeding. Local, free, no signup.
How to use CSV to SQL INSERT
- Paste or type your contentThe result appears as you type — there is no submit button.
- Set “Table name”my_table
- Read and copy the resultThe output updates live and the copy button takes it in one click.
Worked example
- name,age Alice,30 Bob,25
- INSERT INTO my_table (name, age) VALUES ('Alice', 30); INSERT INTO my_table (name, age) VALUES ('Bob', 25);
Nothing you enter leaves your device
All of the work happens inside your browser. Whatever you type is never packaged up and sent to a server, and no request this page makes carries it.
That makes it safe for contract amounts, personal details and internal documents you would rather not hand to a third party — close the tab and it is gone.
What this tool does not do
CSV to SQL INSERT only does what a browser can do on its own — it talks to no backend service. So it keeps no history for you and syncs nothing across devices; if you need a record, copy or download the result.
It is also not a substitute for professional judgement. For legal, medical or tax decisions, treat the output as a starting point rather than a final answer.
Frequently Asked Questions
- How are strings quoted?
- Text is wrapped in single quotes with inner quotes doubled.
- Can I set the table name?
- Yes, type the target table in the table field.