update statement oracle code example

Example 1: oracle update with

UPDATE mytable t		-- Update using WITH statement
SET value3 = (
    WITH comp AS (
        SELECT id, value1
        FROM mytable t
        WHERE value2 > 10
    )
    SELECT c.value1
    FROM comp c
    WHERE c.id = t.id
);

Example 2: update oracle

UPDATE T_NAME
SET PARAM_1=23, PARAM_2=true
WHERE PARAM_7= 'something'

Example 3: oracle SQL update

UPDATE table
SET column1 = expression1,
    column2 = expression2,
    ...
    column_n = expression_n
[WHERE conditions];

Example 4: update from select oracle

UPDATE t1
SET t1.COL1 = t2.COL1, t1.COL2 = t2.COL2
FROM MY_TABLE AS t1
JOIN MY_OTHER_TABLE AS t2 ON t1.COLID = t2.ID
WHERE t1.COL3 = 'OK';

Tags:

Sql Example