Direction: Choose the correct option
Q1.
Which SQL statement is used to add new rows to a table?
Direction: Choose the correct option
Q2.
INSERT INTO students (id, name) VALUES (1, 'John');What happens if you don't specify all columns?Direction: Choose the correct option
Q3.
How do you insert multiple rows in a single INSERT statement?
Direction: Choose the correct option
Q4.
INSERT INTO customers VALUES (1, 'John', 'john@email.com');What assumption does this query make?Direction: Choose the correct option
Q5.
How do you insert data from one table into another?
