The format for the UPDATE command is the word UPDATE, followed by the name of the table to be updated. The next portion of the command consists of the word SET, followed by the name of the column to be updated, an equals sign, and the new value.
Explanation:
UPDATE Syntax
UPDATE table_name SET column1 = value1, column2 = value2, etc WHERE condition;