Contents IndexComparing dates in queries Pattern matching in search conditions

User's Guide
   Part II. Tutorials
     Chapter 7. Selecting Data from Database Tables
      Compound search conditions in the WHERE clause

So far, you have seen equal (=) and less than (<) as comparison operators. SQL Anywhere also supports other comparison operators, such as greater than (>), greater than or equal (>=), less than or equal (<=), and not equal (<>).

These conditions can be combined using AND and OR to make more complicated search conditions.

To list all employees born before March 3, 1964, but exclude the employee named Whitney:

emp_lname birth_date
Cobb 1960-12-04
Jordan 1951-12-13
Breault 1947-05-13
Espinoza 1939-12-14
Dill 1963-07-19
Francis 1954-09-12

Contents IndexComparing dates in queries Pattern matching in search conditions