124k views
4 votes
Assume you are using the MINUS operator to combine the results from two tables with identical structure, CUSTOMER and CUSTOMER_2. The CUSTOMER table contains 10 rows, while the CUSTOMER_2 table contains 7 rows. Customers Dunne and Olowski are included in the CUSTOMER table as well as in the CUSTOMER_2 table. How many records are returned when using the MINUS operator?

User Roudi
by
5.9k points

1 Answer

5 votes
The result of MINUS operator will be 10 - 2 = 8 records (number of records in CUSTOMER - number of common records).
User Alfred Jingle
by
5.9k points