我有两张桌子。Table2
正在引用 EmployeeID。Table1
_ 我想从 Table1 中选择 EmployeeID 不在 Table2 中的记录。我在 SQL Server2008 中编写了以下 SQL 查询,但它没有显示所需的结果:
SELECT distinct e1.EmployeeID
FROM Employee as e1, EmployeeTimeIn as e2
WHERE e1.EmployeeID <> e2.EID;
请帮忙。
我有两张桌子。Table2
正在引用 EmployeeID。Table1
_ 我想从 Table1 中选择 EmployeeID 不在 Table2 中的记录。我在 SQL Server2008 中编写了以下 SQL 查询,但它没有显示所需的结果:
SELECT distinct e1.EmployeeID
FROM Employee as e1, EmployeeTimeIn as e2
WHERE e1.EmployeeID <> e2.EID;
请帮忙。