我有Employee
和Department
表。如何获得未分配给部门的相应员工ID?
Employee Table department table AllocatedDetails
EmpID DeptID AllocatedID
Name Name EmpID
现在我必须检索表EmpID
中没有的AllocatedDetails
。
任何人都可以帮助我.....
注意:我只需要SQL查询
答案 0 :(得分:1)
select empid, name
from employee
where empid not in (select empid from allocatedDetails)
请注意,这假设assignedid是deptid