Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 246 Bytes

File metadata and controls

11 lines (7 loc) · 246 Bytes

The UPDATE statement is used to modify the existing records in a table.

Syntax

**UPDATE table_name
SET
 column1_ = value1column2 = value2, ...
WHERE condition;

LINKS

[[DML (Data Manipulation Language)]]