Predicate
From Oracle FAQ
A predicate is the syntax used to specify a subset of rows to be returned. Predicates are specified in the WHERE clause of a SQL statement.
In the example below "EMPNO=7788" is a predicate:
SELECT * FROM emp WHERE empno = 7788;
| Glossary of Terms | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | # |

