Combines two Boolean expressions and returns TRUE when both of the expressions are TRUE. When more than one logical operator is used in a statement, AND operators are evaluated first. You can change the order of evaluation by using parentheses.
boolean_expression AND boolean_expression
Boolean
Returns TRUE when both of the expressions are TRUE.
This chart outlines the outcomes when you compare TRUE and FALSE values using the AND operator.
| TRUE | FALSE | UNKNOWN | |
|---|---|---|---|
| TRUE | TRUE | FALSE | UNKNOWN |
| FALSE | FALSE | FALSE | FALSE |
| UNKNOWN | UNKNOWN | FALSE | UNKNOWN |
| Expressions | SELECT |
| Functions | WHERE |
| Operators (Logical Operators) |