MySQL UpdateUpdating records. MySQL UPDATE Statement The UPDATE statement is used to modify the existing records in a table. Be careful when updating records! If you omit the WHERE clause, ALL records in the table will be updated! ExampleUPDATE Customers SET ContactName='Alfred Schmidt', City='Frankfurt' WHERE CustomerID=1;Try it Yourself PreviousNext