Equality and inequality symbols in a WHERE clause

You can write a WHERE search condition using any of the symbols of equality or inequality in WHERE. For example, to select only employees who have made commissions of $1,000 or more:

This query:

SELECT ID, COMM
FROM Q.STAFF
WHERE COMM >= 1000

Produces this report:

  ID     COMM
----- -------
  70  1152.00
  90  1386.70
 340  1285.00

Additional examples:

[ Previous Page | Next Page | Contents | Index ]