Convert SQL INSERT statements or query results to CSV format
Use batches for very large datasets. Start with smaller batch sizes for better performance.
INSERT INTO users (id, name, email) VALUES
(1, 'John Doe', 'john@example.com'),
(2, 'Jane Smith', 'jane@example.com');
id name email
1 John Doe john@example.com
2 Jane Smith jane@example.com