The SQL EXCEPT operator combines two queries and returns those rows that are in the first query but not in the second. It represents the difference between two sets.
The EXCEPT operator has the same restrictions as the UNION operator with regards to the two queries that are combined. Both queries need to have the same number of columns and the data types of the columns need to match.
In Oracle the EXCEPT operator is called MINUS