Alttaki cümleleri join kullanarak nasıl yazabilirim?
Select * from Birey b where not exists (select 1 from SınavOgrenci s where s.OgrenciId = b.Id )
Select * from Birey b where Id = (select OgrenciId from SınavOgrenci s where s.Notu=92 )
Alttaki cümleleri join kullanarak nasıl yazabilirim?
Select * from Birey b where not exists (select 1 from SınavOgrenci s where s.OgrenciId = b.Id )
Select * from Birey b where Id = (select OgrenciId from SınavOgrenci s where s.Notu=92 )
// Comments are closed.
Aşağıdaki grafiği kullanabilirsin. İki sorgunda da inner join kullanıyorsun. Standard sql kullanıyorsan (Oracle hariç) aşağıdaki inner join şeklinde yazabilirsin.