INTERSECT clause is used in oracle and SQL Server to retrieve the data which are exists in both the tables.i.e we can say common records present in both the tables.
Syntax:
select column1, column2,....
from table 1 [where clause]
from table 1 [where clause]
intersect
select column1, column2 ...
from table2 [where clause]
from table2 [where clause]
For example Table1 and table2 as below