Skip to content

ABAP Keyword Documentation →  ABAP − Short Reference 

sql_cond - Short Reference

Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


... { {col1 {=|EQ|<>|NE|>|GT|<|LT|>=|GE|<=|LE} 
              { {dobj}
              | {col2}
              | {[ALL|ANY|SOME] subquery} }}
    | {col [NOT] BETWEEN dobj1 AND dobj2}
    | {col [NOT] LIKE dobj [ESCAPE esc]}
    | {col [NOT] IN (dobj1, dobj2 ...)}
    | {col [NOT] IN seltab}
    | {col IS [NOT] NULL}
    | {(cond_syntax)}
    | {EXISTS subquery}
    | {col [NOT] IN subquery} } ...

Effect

Condition for the content of columns col behind the addition WHERE in Open SQL statements. Conditions can be put in parentheses explicitly, joined using AND and OR, and negated using NOT.

Additions