Updating one row
UPDATE customers SET email='
[email protected]' WHERE id=1
This query updates the content of email in the customers table to the string
[email protected] where the value of id is equal to 1. The old and new contents of the database table are illustrated below on the left an...