UPDATE

For the UPDATE command, you are allowed to change data in a specified row.

UPDATE table_name
    SET column_name = value, column_name = value, ...
    [WHERE condition];