Q. What does the following command do?
Code:
DELETE FROM orders WHERE id = 101;
β
Correct Answer: (B)
Deletes row with ID 101
Explanation: `DELETE FROM ... WHERE ...` deletes specific rows matching the condition.