select * from employees                               -- 全部查询
where not exists (                                    -- 不包含
              select emp_no from dept_emp
               where emp_no = employees.emp_no        -- emp_相同的数据
             );