/*
SELECT column_name(s)
FROM table_name
WHERE EXISTS
(SELECT column_name FROM table_name WHERE condition);
*/

select * from employees
where not exists 
(select emp_no from dept_emp
 where employees.emp_no=dept_emp.emp_no)