select *
from ContactInformation c
where exists (select * from Department d where d.Id = c.DepartmentId)
select *
from ContactInformation c
inner join Department d on c.DepartmentId = d.Id
兩個查詢給出了相同的輸出,這是良好的性能明智的聯接或相關子查詢與存在的條款,哪一個更好。聯接或相關子查詢與存在的條款,哪一個更好
編輯:-is有alternet方式進行連接,以提高性能: - 在上述2箇中查詢我想從部門信息以及contactinformation表
偉大..我有它。 – hrishi 2010-07-22 07:01:16
編輯: - 有連接的alternet方式,以提高性能: - 在上述2個查詢中,我需要來自部門的信息以及聯繫人信息表 – hrishi 2010-07-24 06:02:52