Skip to content
Brain
Coder
Tools
Guides
0 uploads — verify
GitHub
Tool info
CSV ⇄ SQL Converter
CSV → SQL
SQL → CSV
Table name
Single multi-row INSERT
CSV
name,age,email Alice,30,alice@example.com Bob,25,"bob, the builder <bob@example.com>" Carol,35,carol@example.com
SQL output
Copy
CREATE TABLE my_table ( name TEXT, age TEXT, email TEXT ); INSERT INTO my_table (name, age, email) VALUES ('Alice', '30', 'alice@example.com'), ('Bob', '25', 'bob, the builder <bob@example.com>'), ('Carol', '35', 'carol@example.com');
Clear