The following table lists all of the SQL logical operators supported by EBX®, along with their standard SQL syntax.
Operator syntax | Description and example(s) |
---|---|
boolean1 OR boolean2 | Whether boolean1 is TRUE or boolean2 is TRUE
|
boolean1 AND boolean2 | Whether boolean1 is TRUE and boolean2 is TRUE
|
NOT boolean | Whether boolean is not TRUE; returns UNKNOWN if boolean is UNKNOWN
|
boolean IS FALSE | Whether boolean is FALSE; returns FALSE if boolean is UNKNOWN
|
boolean IS NOT FALSE | Whether boolean is not FALSE; returns TRUE if boolean is UNKNOWN
|
boolean IS TRUE | Whether boolean is TRUE; returns TRUE if boolean is UNKNOWN
|
boolean IS NOT TRUE | Whether boolean is not TRUE; returns FALSE if boolean is UNKNOWN
|
boolean IS UNKNOWN | Whether boolean is UNKNOWN
|
boolean IS NOT UNKNOWN | Whether boolean is not UNKNOWN
|