ice world

There is nothing too difficult if you put your heart into it.
posts - 104, comments - 103, trackbacks - 0, articles - 0
话不多说,请看代码!
/** left (outer) join */ 
/** Standard SQL Syntax */
select * from a left outer join b on a.id = b.id;
/** Oracle SQL Syntax */
select * from a, b where a.id = b.id(+); 

/** right (outer) join */ 
/** Standard SQL Syntax */
select * from a right outer join b on a.id = b.id; 
/** Oracle SQL Syntax */
select * from a, b where a.id(+= b.id; 

/** (inner) join */ 
/** Standard SQL Syntax */
select * from a inner join b on a.id = b.id; 
/** Oracle SQL Syntax */
select * from a, b where a.id = b.id; 

/** (full) join */ 
/** Standard SQL Syntax */
select * from a full join b on a.id = b.id; 
/** Oracle SQL Syntax */
select * from a, b where a.id = b.id(+union select * from a, b where a.id(+= b.id;


只有注册用户登录后才能发表评论。


网站导航: