有两个表“员工”和“分配”。谁能帮我把这个嵌套查询转换成一个简单的查询(使用连接或任何东西)。我的意思是我不想要嵌套查询。这是工作正常的查询。
select emp_id, emp_name from employees
where emp_id not in (select emp_id from allocation
where emp_id is not null
and date_assignedUpto is null
group by emp_id);