Below is an example how to insert multiple values/rows into a table using a single insert statement shortcut. Versus individually listing out each insert statement separately.
INSERT INTO table (col1, col2, col3) VALUES (value_1), (value_2), (value_3);