Q. In the following MySQL command how many rows will be deleted?
DELETE person
WHERE person_id=1;
/*person_id is a primary key */
DELETE person
WHERE person_id=1;
/*person_id is a primary key */
β
Correct Answer: (A)
1
Explanation: This question is about how MySQL deletes data using the DELETE command.