Q. In the following MySQL command how many rows will be updated?
UPDATE person
SET lname=’s’,
Fname=’p’,
WHERE person_id<10;
/* person_id is a primary key */
β
Correct Answer: (A)
0-9
Explanation: This question is asking about the number of rows that will be updated in a MySQL database using the provided command. Let's break it down: