SQL Reference

EXISTS Predicate

>>-EXISTS--(fullselect)----------------------------------------><
 

The EXISTS predicate tests for the existence of certain rows.

The fullselect may specify any number of columns, and

Example:

EXISTS (SELECT * FROM TEMPL WHERE SALARY < 10000)


[ Top of Page | Previous Page | Next Page ]