Complete the code to insert multiple rows into the table.
INSERT INTO employees (name, age) VALUES [1];To insert multiple rows in one statement, list them separated by commas inside the VALUES clause.
Complete the code to insert three rows into the products table.
INSERT INTO products (product_name, price) VALUES [1];Multiple rows are inserted by listing each row in parentheses separated by commas inside VALUES.
Fix the error in the code to insert multiple rows correctly.
INSERT INTO orders (order_id, quantity) VALUES [1];Rows must be enclosed in parentheses and separated by commas inside VALUES.
Fill both blanks to insert two rows with columns id and score.
INSERT INTO results (id, score) VALUES [1] [2];
Separate multiple rows with commas inside VALUES. Semicolons end the statement and should not be used between rows.
Fill all three blanks to insert three rows into the table users with columns username and email.
INSERT INTO users (username, email) VALUES [1] [2] [3];
Multiple rows are listed inside VALUES separated by commas. The last row does not have a trailing comma.