Depending on your database, may include BETWEEN and NOT BETWEEN. Use these operators when you want to ensure that your data is within a range of values.
When doing comparisons on date columns, you may have to use a string-to-date function. Check your database documentation for the syntax of this function. For example, the MSSQL Server database uses the following syntax:
HIREDATE BETWEEN to_date('01-Jan-1990') AND to_date('01-Jan-1995') returns all rows where the HIREDATE column is between 1990 and 1995.
To build complex where clauses such as the above example, you must use the Add Custom button from the Where Clause Builder screen to custom build your clause.