Comparison conditions

The syntax for comparison conditions is as follows:

expression compare expression

where compare is a comparison operator. Table 3-4 lists the comparison operators available in Sybase IQ.

Table 3-4: Comparison operators available in Sybase IQ

operator

description

=

Equal to

>

Greater than

<

Less than

>=

Greater than or equal to

<=

Less than or equal to

!=

Not equal to

<>

Not equal to

!>

Not greater than

!<

Not less than

Example

For example, the following query retrieves the names and birth years of the oldest employees:

SELECT name, year_of_birth 
FROM employees 
WHERE year_of_birth <= ALL (SELECT MIN(year_of_birth) FROM employees);

The subqueries that provide comparison values for quantified comparison predicates, as in the preceding example, might retrieve multiple rows but can only have one column.

NoteAll string comparisons are:

Compatibility