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 に存在しないことを確認する必要があります。
それを見つける方法は?