SQL IntersectSimilar to the UNION command, INTERSECT also operates on two SQL statements. The difference is that, while UNION essentially acts as an OR operator (value is selected if it appears in either the first or the second statement), the INTERSECT command acts as an AND operator (value is selected only if it appears in both statements). The syntax is as follows: [SQL Statement 1] Let's assume that we have the following two tables,
and we want to find out all the dates where there are both store sales and internet sales. To do so, we use the following SQL statement: SELECT Date FROM Store_Information Result:
Please note that the INTERSECT command
will only return distinct values.
|