Q. How do you delete all rows from a table named `orders`?
β
Correct Answer: (C)
DELETE FROM orders;
Explanation: `DELETE FROM orders;` removes all records from the table.