sql >> Databasteknik >  >> RDS >> Sqlserver

Sql Query hjälper till att få icke-matchande poster från två tabeller

create table #one (id int,acc nvarchar(25))
insert into #one (id , acc) values(1,'one') 
insert into #one (id , acc) values(2,'two') 
insert into #one (id , acc) values(3,'three') 

create table #two (acct nvarchar(25),ids int)
insert into #two (acct,ids) values('one',1) 
insert into #two (acct,ids) values('two',3) 
insert into #two (acct,ids) values('four',4) 

select ids from #two EXCEPT select id from #one 

drop table #one 
drop table #two 

testa den här



  1. Använda databasscheman i SQL Server

  2. Det går inte att logga in på SQL Server 2008 via kommandoradsverktyget

  3. SQL Developer-skriptutgång trunkerar sys_refcursor-bredden

  4. Hur får man Postgresql-procedurvarningsmeddelanden?