SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
ABAP Keyword Documentation → ABAP − Short Reference →
UPDATE - Short Reference
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