True if `A` is false. If the operand is missing, then the result is
missing.
+The overall truth table for the binary logical operators is:
+
+|`A`|`B`|`A AND B`|`A OR B`|
+|-|-|-|-|
+|false|false|false|false|
+|false|true|false|true|
+|true|false|false|true|
+|true|true|true|true|
+|false|missing|false|missing|
+|true|missing|missing|true|
+|missing|false|false|missing|
+|missing|true|missing|true|
+|missing|missing|missing|missing|
+
## Relational Operators
The relational operators take numeric or string operands and produce