Q. What will this query do?
Code:
DELETE FROM employees WHERE id = 1;
β
Correct Answer: (B)
Deletes employee with ID 1
Explanation: This query deletes the record from `employees` where the ID is 1.