Answer:
the Where clause specifies the conditions a row must meet to be updated.
Explanation:
UPDATE statement is used to update existing records in a database table. The syntax is as follows:
UPDATE table
SET column1 = expression1,
column2 = expression2,
...
[WHERE conditions];