Updating multiple columns in table

suggest change

You can update multiple columns in a table in the same statement, separating col=val pairs with commas:

UPDATE person 
   SET country = 'USA', 
       state = 'NY' 
WHERE city = 'New York';

Feedback about page:

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



Table Of Contents