sql >> Database teknologi >  >> RDS >> Sqlserver

Sql Query hjælp til at få ikke-matchende poster fra to 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 

test denne



  1. Sådan kalder du Oracle table-funktion (pipelined funktion) fra .NET

  2. PostgreSQL - Installation af JDBC-driver

  3. Sådan kører du SQL Server 2017 og 2019 samtidigt på en Mac

  4. Hvordan ekko tilfældige rækker fra databasen?