多表连接的SQL写法(SqlServer、Oracle)

Oracle8
select a.*,b.* from a,b where a.id(+)=b.id  --相当于右联接
select a.*,b.* from a,b where a.id=b.id(+)  --相当于左联接


Oracle9
支持以上的写法,还增加了LeftJoin、Right Join等
select a.*,b.* from a left join b on a.id=b.id
select a.*,b.* from a right join b on a.id=b.id

Sqlserver
select a.*,b.* from a,b where a.id *= b.id  --相当于左联接
select a.*,b.* from a,b where a.id =* b.id  --相当于右联接
select a.*,b.* from a left join b on a.id=b.id
select a.*,b.* from a right join b on a.id=b.id

自己的一些经验,保存下来
posted @ 2004-10-27 19:05  pcsky(进哥)  阅读(10851)  评论(7编辑  收藏  举报