Account
Categories

UPDATE Command


When you want to edit the data in a specific table, type UPDATE table_name SET column1 = value1 WHERE condition;
It will update the existing data in the table.

Syntax:

   UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;