Write a syntax for update query in Oracle?
An UPDATE statement is used to update the records that already exist in the table.
Example
SYNTAX:-
UPDATE table
SET column1 = expression1,
column2 = expression2,
...
column_n = expression_n
[WHERE conditions];