1You use the operators in any
2clause (except the From clause)
3 With Date and Timestamp - can only use addition and subtraction
4 Add (+), Subtract (-), Multiply (*), Divide (/)
1LOGICAL OPERATORS?
2ALL (TRUE if all of the subquery values meet the condition)
3AND (TRUE if all the conditions separated by AND is TRUE)
4ANY (TRUE if any of the subquery values meet the condition)
5BETWEEN (TRUE if the operand is within the range of comparisons)
6EXISTS (TRUE if the subquery returns one or more records)
7IN TRUE if the operand is equal to one of a list of expressions)
8LIKE (TRUE if the operand matches a pattern)
9NOT (Displays a record if the condition(s) is NOT TRUE)
10OR (TRUE if any of the conditions separated by OR is TRUE)
11SOME (TRUE if any of the subquery values meet the condition)
1You use the operators in any clause (except the From clause)
2 With Date and Timestamp - can only use addition and subtraction
3Add (+), Subtract (-), Multiply (*), Divide (/)