Which set operator generates the required output?

Examine the description of the SALES1 table:

SALES2 is a table with the same description as SALES1.
Some sales data is duplicated in both tables.
You want to display the rows from the SALES1 table which are not present in the SALES2 table.
Which set operator generates the required output?
A. INTERSECT
B. UNION ALL
C. UNION
D. SUBTRACT
E. MINUS

Download Printable PDF. VALID exam to help you PASS.

2 thoughts on “Which set operator generates the required output?

  1. Answer: E
    Refer 19c SQL workshop I for detail under set operators
    Operator Returns
    UNION Rows from both queries after eliminating duplications
    UNION ALL Rows from both queries, including all duplications
    INTERSECT Rows that are common to both queries
    MINUS Rows in the first query that are not present in the second query

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.