Range test operator: BETWEEN
The BETWEEN operator tests a value to see if it occurs in a given range including the endpoints. For example, the expression:
col BETWEEN 10 AND 20
evaluates to True if and only if the value of col is at least 10 but no more than 20. Table 7-6 shows the result type for using BETWEEN for each operand data type.
The BETWEEN operator follows the same rules as the comparison operators.

Additional Links:

Copyright Actuate Corporation 2012