!--a11y-->
UPDATE Statement 
The UPDATE statement allows updating the values of selected columns of rows of a database table.

<update
statement> ::= UPDATE <table name> SET <assignment list> ( <where clause> )?. |

You cannot specify string literals as values for CLOB columns. Hex literals are not supported in Open SQL.

UPDATE
employees SET
employee_name = 'Mary Jones' |
Updating Columns of a Table. The name of the employee with the employee_id 23is updated to the new value 'Mary Jones' in the database table employees.
Dynamic Parameter Specification
