Updating All Rows

suggest change

This example uses the Cars Table from the Example Databases.

UPDATE Cars
SET Status = 'READY'

This statement will set the ‘status’ column of all rows of the ‘Cars’ table to “READY” because it does not have a WHERE clause to filter the set of rows.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


UPDATE:
*Updating All Rows

Table Of Contents