Selecting rows: the where clause

The where clause in a select statement specifies the search conditions that determine which rows are retrieved. The general format is:

select select_list 
     from table_list 
     where search_conditions

Search conditions, or qualifications, in the where clause include:

The where keyword can also introduce:

For more information on search conditions, see the “where Clause” section in the Reference Manual.