(一)子查詢 select * from tableA where id operator (select * from tableA a where a
operaor
(二)自查詢 select a
(三)多表連接查詢(Left |right |outer jion on )
(四)topN(查出查詢結果集中的前n條記錄)
例如
select * from ( select * from tableA order by id desc )where rownum <
From:http://tw.wingwit.com/Article/program/Oracle/201311/18751.html