drop table #temp1
drop table #temp2
create table #temp1 (id int identity, A int, B int)
create table #temp2 (id int identity, A int, B int)
insert into #temp1 values (20, 1001)
insert into #temp1 values (20, 1001)
insert into #temp1 values (30, 1001)
insert into #temp2 values (20, 1001)
在 SQL 的帮助下,我需要找出 #temp1 中的第 2 行和第 3 行在 #temp2 中不存在。
如何找出来?