Skip to content

ABAP Keyword Documentation →  ABAP - Short Reference 

UPDATE - Short Reference

Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


UPDATE {dbtab|(dbtab_syntax)} [CLIENT SPECIFIED] 
                              [CONNECTION {con|(con_syntax)}]
       { { SET [col1 = f1 col2 = f2 ... ]
               [col1 = col1 + f1 col2 = col2 + f2 ...]
               [col1 = col1 - f1 col2 = col2 - f2 ...]
               [(expr_syntax1) (expr_syntax2) ...]
               [WHERE sql_cond] }
       | { FROM wa|{TABLE itab} } }.

Effect

Changes rows in a database table.

Additions