Direction: Choose the correct option
Q1.
Which SQL statement removes records from a table?
Direction: Choose the correct option
Q2.
DELETE FROM students WHERE age < 18;What will this query do?Direction: Choose the correct option
Q3.
What happens if you run DELETE without WHERE clause?
Direction: Choose the correct option
Q4.
What's the difference between DELETE and TRUNCATE?
Direction: Choose the correct option
Q5.
DELETE FROM orders WHERE order_date < '2020-01-01';What does this query delete?