BETWEEN (SQL Server Compact)
Specifies a range to test.
- test_expression
-
The expression to test for in the range defined by begin_expression and end_expression. The test_expression must be the same data type as both begin_expression and end_expression.
- NOT
-
Specifies that the result of the predicate be negated.
- begin_expression
-
Any valid expression in Microsoft SQL Server Compact 3.5 (SQL Server Compact 3.5). The begin_expression must be the same data type as both test_expression and end_expression.
- end_expression
-
Any valid expression in SQL Server Compact 3.5. end_expression must be the same data type as both test_expression and begin_expression.
- AND
-
Acts as a placeholder indicating that test_expression should be within the range indicated by begin_expression and end_expression.
BETWEEN returns TRUE if the value of test_expression is greater than or equal to the value of begin_expression and less than or equal to the value of end_expression.
NOT BETWEEN returns TRUE if the value of test_expression is less than the value of begin_expression or greater than the value of end_expression.

