CSV to SQL INSERT
Convert CSV data to SQL INSERT statements — MySQL, PostgreSQL, SQLite
CSV Input
SQL Output
-- Generated by NKable.com CSV to SQL Converter -- Table: users | Rows: 4 | Dialect: mysql INSERT INTO `users` (`id`, `name`, `email`, `age`, `active`) VALUES (1, 'Alice Smith', '[email protected]', 28, 1), (2, 'Bob Jones', '[email protected]', 34, 0), (3, 'Carol White', '[email protected]', 25, 1), (4, 'David Brown', '[email protected]', 41, 1);