Difference between revisions of "Set Operators"

From rbachwiki
Jump to navigation Jump to search
Line 11: Line 11:
== UNION==
== UNION==
Returns the results of both queries and removes duplicates
Returns the results of both queries and removes duplicates
SELECT  ba.authorid
FROM books b JOIN bookauthor ba
  USING (isbn)
WHERE category = 'FAMILY LIFE'
UNION
SELECT ba.authorid
FROM books b JOIN  bookauthor ba
  USING (isbn)
WHERE category = 'CHILDREN';


== UNION ALL ==
== UNION ALL ==

Revision as of 01:12, 24 October 2017

Set operators are used to combine the results of two (or more) SELECT statements. Valid set operators in Oracle 11g are UNION, UNION ALL, INTERSECT, and MINUS. When used with two SELECT statements, the UNION set operator returns the results of both queries. However, if there are any duplicates, they are removed, and the duplicated record is listed only once. To include duplicates in the results, use the UNION ALL set operator. INTERSECT lists only records that are returned by both queries; the MINUS set operator removes the second query’s results from the output if they are also found in the first query’s results. INTERSECT and MINUS set operations produce unduplicated results.

UNION

Returns the results of both queries and removes duplicates

SELECT  ba.authorid
FROM books b JOIN bookauthor ba
  USING (isbn)
WHERE category = 'FAMILY LIFE'
UNION
SELECT ba.authorid
FROM books b JOIN  bookauthor ba
 USING (isbn)
WHERE category = 'CHILDREN';

UNION ALL

Returns the results of both queries but includes duplicates

INTERSECT

Returns only the rows included in the results of both queries

MINUS

Subtracts the second query's result if they're also returned in the first query's results

Back To Top- Home - Category