Q. In the following MySQL command how many rows will be deleted?
DELETE person
WHERE person_id<10;
/*person_id is a primary key */
β
Correct Answer: (A)
0-9
Explanation: This question asks about deleting rows from a table using a DELETE statement in MySQL. Let's break it down: