EXCEPT
An EXCEPT operator matches two or more selects, giving the rows in the first select that are not in the other selects.
In other words, return no rows EXCEPT those that are only found in the first select.
                                                       EXCEPT syntax:
                                                  SELECT statement_1
                                                  EXCEPT [ALL | DISTINCT]
                                                  SELECT statement_2
                                                  EXCEPT [ALL | DISTINCT]
                                                   SELECT statement_3 …
EXCEPT …… sets which rows are only in the first select.
                   Duplicate rows and nulls are excluded by default.
ALL …………. means that duplicate rows are not to be excluded.
DISTINCT … means duplicate rows and nulls are to be excluded.
                   If neither ALL or DISTINCT are specified, then DISTINCT is the default.
> The multiple selects must have the same number of columns (column names, functions, or arithmetic expressions).
> The order of columns must match in data type or be convertible to the same data type.
> If the name in a column is the same in all selects, then this name is used in the result. If this is not true, then most RDBMS systems take the name from the first select. If you want to create a different column name, use an AS clause in the first select for a column alias.
> ORDER BY can only be used in the last select, but it is applied to the entire result table.
> GROUP BY and HAVING can be used in each select statement, but do not apply to the final result table.
> DB2 and PostgreSQL support EXCEPT and EXCEPT ALL.
> Access, Oracle, MySQL, and SQL Server do not support EXCEPT and EXCEPT ALL.