SQL join

gougou3250發表於2007-05-09
連表查詢,使用join與不使用有什麼效率上的區別麼?
例如:
select * from t1,t2 where t1.id = t2.p_id;
select * from t1 join t2 on (t1.id = t2.p_id);
至於left join/right join 我在條件後再加一個t1.xx or t2.xx is not null

相關文章