CSV
id,name 1,Ada
SQL
INSERT INTO users (id, name) VALUES (1, 'Ada');
Data Tools
Turn headered CSV into INSERT statements in your browser. Set table name, quote style, empty-value handling, and batch size. Conversion stays local—useful for seed data and bulk-import prep.
Favorite this tool
No favorite storage mode has been selected.
Quick actions
Copy this tool URL or open the system share sheet on a supported device.
数据格式
Turn headered CSV into INSERT statements in your browser. Set table name, quote style, empty-value handling, and batch size. Conversion stays local—useful for seed data and bulk-import prep.
CSV
id,name 1,Ada
SQL
INSERT INTO users (id, name) VALUES (1, 'Ada');
Empty fields can be written as NULL by default, or kept as empty strings depending on your target database habit.
When enabled, multiple rows share one INSERT with several VALUES clauses, split by your chosen batch size.
Tools
Continue with another translated tool for a nearby task.
SQL to Prisma
Convert CREATE TABLE DDL into Prisma models in your browser. Common column types plus primary key, autoincrement, and unique markers are recognized. Processing stays local—useful for bootstrapping a schema from an existing database.
CSV to JSON
Convert CSV tables to JSON arrays in your browser. Supports comma, tab, semicolon, or pipe separators and optional header rows. Processing stays local—useful for exports, API samples, and light imports.
CSV Column Extractor
Extract selected CSV columns by header name or zero-based index and export as CSV, JSON, or a plain list. Processing stays in your browser—useful for trimming wide exports.