SQL UPDATE query statement - The SQL UPDATE Query is used to changes the data of one or more existing records in a database table. We can update single columns as well as multiple columns using UPDATE Query as per our requirement.
Update Query Syntax - The basic syntax of the SQL Update command is as mentioned below:
UPDATE table_name
SET column_name1 = value1 column_name2 = value2.....
WHERE [condition];