235k views
1 vote
When you code an UPDATE statement for one or more rows, the SET clause names the columns to be updated and the values to be assigned to those columns, and the ______________________ clause specifies the conditions a row must meet to be updated.

User Brian Vo
by
6.3k points

1 Answer

3 votes

Answer:

the Where clause specifies the conditions a row must meet to be updated.

Step-by-step 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];

  • SET clause names the columns to be updated and the values to be assigned to those columns
  • WHERE clause specifies the conditions a row must meet to be updated
User Harleen
by
6.0k points