Was this helpful?
Mulitiple-row INSERT
The SQL INSERT statement lets you supply multiple rows on the VALUES clause. For example:
INSERT INTO tbl (col1, col2) VALUES (1,'a'), (2, 'b'), (3, 'c');
For more information, see the SQL Reference Guide.
Last modified date: 01/30/2023