An UPDATE statement is used to update the records that already exist in the table.

BY Best Interview Question ON 16 Feb 2019

Example

SYNTAX:-

UPDATE table

SET column1 = expression1,

column2 = expression2,

  ...

column_n = expression_n

[WHERE conditions];