Add several records in one statement.
Section: Insert, update, delete, and upsert
Insert multiple rows
sql
sql
INSERT INTO tags (name) VALUES ('sql'), ('sqlite'), ('database');Explanation
Batch inserts are concise and usually faster than one statement per row.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Insert, update, delete, and upsert