Update Statement
SQL statement that modifies column values in existing rows of a table.
Description
Sample Source Patterns
Basic case
UPDATE CRASHDUMPS.TABLE1 i
SET COLUMN4 = CRASHDUMPS.TABLE2.COLUMN3
WHERE i.COLUMN1 = CRASHDUMPS.TABLE2.COLUMN1
AND i.COLUMN3 = 'L';UPDATE with forward alias
UPDATE with target table in the the FROM clause
Related EWIs
Last updated
