Answer:
1. INTERSECT
Explanation:
Intersection is the set operator that gives us the information which is common to both tables. In this case the query will be:
SELECT firstname, lastname, phone FROM Customers
INTERSECT
SELECT firstname, lastname, phone FROM Employees;