有两张桌子
Table 1
GroupName Resolver
Aa A
Bb B
Cc C
Dd D
Table 2
key UserId
1 B
2 C
输出应该是 A 和 D。这意味着 table2 中不存在的记录应该出现。
有两张桌子
Table 1
GroupName Resolver
Aa A
Bb B
Cc C
Dd D
Table 2
key UserId
1 B
2 C
输出应该是 A 和 D。这意味着 table2 中不存在的记录应该出现。
select * from table1 t1
left join table2 t2 on t1.Resolver = t2.UserId
where t2.UserId is null
使用左连接并检查 null
使用以下查询:
Select * from Table1 where Resolver NOT IN (SELECT UserId from Table2);
select t1.Resolver from Table1 t1, table t2 where t1.Resolver != t2.UserId