How to fetch common records between two table in SQL?

Discussion RoomCategory: Database&SQLHow to fetch common records between two table in SQL?
Nick asked 5 years ago

Using INTERSECT-
SELECT * FROM EmployeeSalary
INTERSECT
SELECT * FROM ManagerSalary

Scroll to Top