AS ABAP Release 758, ©Copyright 2024 SAP SE. All rights reserved.
ABAP - Keyword Documentation → ABAP - Programming Language → ABAP - Short Reference → S
sql_exp - Short Reference
Syntax
... { col }
| { literal | @dobj
| @( expr ) }
| { operand1 +|-|*|/ operand2 [+|-|*|/ operand3 ... ] }
| { func( arg1[, arg2]... ) }
| { cast( operand AS dtype ) }
| { operand1 && operand2 [&&
operand3 ... ] }
| { coalesce( arg1, arg2 ) }
| { CASE ... WHEN ... THEN ... ELSE ... END }
| { sql_agg }
| { sql_win } ...
Effect
Expression that is passed to the database system and executed there.
Additions