August 2009
Intermediate to advanced
960 pages
21h 21m
English
Set operators combine two or more sets of data to produce a single result set. Oracle has four set operators: UNION, UNION ALL, MINUS, and INTERSECT. The UNION and UNION ALL operators combine results. The INTERSECT operator determines common rows. The MINUS operator shows differences between sets of rows.
The sets of data in a set operation are SELECT statements and when writing any set operation, there are two rules to remember.
• Each of the SELECT lists must contain the same number of columns.
• The matching columns in each of the SELECT lists must be the same data type. (Oracle considers ...
Read now
Unlock full access