Complete the code to insert multiple rows into the table 'students'.
INSERT INTO students (name, age) VALUES [1];The correct syntax for inserting multiple rows uses commas between each row's values inside parentheses.
Complete the code to insert three rows into the 'products' table with columns 'product_name' and 'price'.
INSERT INTO products (product_name, price) VALUES [1];Multiple rows are inserted by listing each row's values in parentheses separated by commas.
Fix the error in the code to correctly insert multiple rows into 'employees' with columns 'first_name' and 'last_name'.
INSERT INTO employees (first_name, last_name) VALUES [1];The correct syntax uses commas between rows and commas between values inside parentheses.
Fill both blanks to insert multiple rows into 'orders' with columns 'order_id' and 'amount'.
INSERT INTO orders (order_id, amount) VALUES [1], [2];
Each row is enclosed in parentheses and rows are separated by commas, not semicolons.
Fill both blanks to insert multiple rows into 'inventory' with columns 'item', 'quantity', and 'price'.
INSERT INTO inventory (item, quantity, price) VALUES [1] , [2];
Each row is enclosed in parentheses. Rows are separated by commas. The last row does not have a trailing comma.