AND | AND |
OR | OR |
XOR | Exclusive OR |
NOT | NOT |
TEST | Tests for zero bits in an specified operand |
&& | AND |
|| | OR |
! | NOT |
&& | AND |
|| | OR |
! | NOT |
AND | AND |
OR | OR |
NOT | NOT |
IF EXIST | IF NOT EXIST |
& | Boolean AND |
| | Boolean OR |
! | Boolean NOT |
&& | Conditional NOT |
|| | Conditional OR |
^ | Boolean Exclusive OR |
?: | Boolean ANY |
boolean | Reseved Data Type |
(AND) | AND |
(OR) | OR |
(NOT) | NOT |
(COND) | Allows you to create your own conditional satement |
NOT | NOT |
AND | AND |
OR | NOT |
LIKE | Allow you to seach for a list containing a string or character. If you wanted names that start with "M" ir would be LIKE 'M%' |
NOT LIKE | Does the oposite of LIKE, excludes items you do not want in your search |
&& | AND |
|| | OR |
! | NOT |
^ | Exclusive OR |
eq | Equality in string comparison not for numeric values,
if used for numeric values it will treat them as strings and add up the ASCII values. |
ne | Inequality in string comparison not for numeric values,
if used for numeric values it will treat them as strings and add up the ASCII values |
== | Numeric equality |
!= | Numeric inequality |
and | Low-precedence AND |
or | Low-precedence OR |
not | Low-precedence NOT |
xor | Low-precedence Exclusive OR |
! | NOT |
& | AND |
# | OR |
$ | XOR |
!$ | XNOR |