Depending on your database, may include: <, <=, <>, =, >, >=. Use these operators when comparing a column value to a single numeric or data value.
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 Oracle database uses the following syntax:
HIREDATE>=to_date('01-Jan-1990') returns all rows where the HIREDATE column is more recent than 01-Jan-1990.