1The SQL MINUS operator is used to return
2all rows in the first SELECT statement
3that are not returned by the second SELECT statement.
4Each SELECT statement will define a dataset.
5]The MINUS operator will retrieve all records
6from the first dataset and then remove from
7the results all records from the second dataset.