Quick Search:
 
 The Oracle ALL Operator      [Return To Index] Jump to:  

Term: ALL

Definition:
The ALL keyword is a multiset operator. Multiset operators combine the results of two nested tables into a single nested table.

The ALL keyword instructs Oracle to return all elements in nested_table1 that are not in nested_table2. For example, if a particular element occurs m times in nested_table1 and n times in nested_table2, then the result will have (m-n) occurrences of the element if m > n and 0 occurrences if m<=n.

Note that ALL is the default condition and does not normally need to be explicitly specified.


Related Code Snippets:
 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org