1、select * from emp1 minus select * from emp2
2、select * from emp1 where EMP_ID not in (select EMP_ID from emp2)
2、select * from emp1 where not exists (select 1 from emp2 where EMP_ID=emp1.EMP_ID)