sql_cond

Reference

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)}
    | {[NOT] EXISTS subquery}
    | {col [NOT] IN subquery} } ... .


Effect

Condition for the contents of col columns behind the addition WHERE in Open SQL statements. Conditions can be put in parentheses, linked with AND and OR, and negated with NOT.

Additions