sql >> Database >  >> RDS >> Sqlserver

Sql Query-hulp om niet-overeenkomende records uit twee tabellen te krijgen

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 deze



  1. Moet records in de orakeltabel invoegen voor planning

  2. Hoe voeg ik in een tabel in vanuit een andere tabel door op waarden te matchen?

  3. Dynamisch bevolkt vervolgkeuzemenu; $_POST retourneert fout

  4. Hoe Coalesce() werkt in SQLite