1The SQL INTERSECT clause/operator is used to combine two SELECT statements,
2but returns rows only from the first SELECT statement
3that are identical to a row in the second SELECT statement.
4This means INTERSECT returns only common rows returned by the two
5SELECT statements.