Final answer:
The correct set operator to display only the unique results of combined SQL statements is UNION.
Step-by-step explanation:
The correct set operator to display only the unique results of the combined SQL statements is UNION.
Here is a step-by-step explanation:
- The UNION operator is used to combine the result sets of two or more SELECT statements into a single result set.
- When UNION is used, it automatically removes duplicate rows from the result set, resulting in only unique results.
- On the other hand, the UNION ALL operator includes all the rows from each SELECT statement, including duplicates.
- The INTERSECT operator returns only the rows that are common to both SELECT statements.
- The MINUS operator returns the distinct rows from the first SELECT statement that are not in the result set of the second SELECT statement.