Informatics Practices

How can we fetch only common records from two tables emp and emp1?

SQL Queries

1 Like

Answer

SELECT * FROM emp 
INTERSECT 
SELECT * FROM emp1;

Answered By

1 Like


Related Questions