....................
2011年9月13日 星期二
oracle 的 top 功能
SQL Server 的 Top,在 Oracle 要用 rownum
EX:選取前10筆資料
SQL>
select * from user.user_objects where rownum <= 10;
EX:選取前10筆資料,有排序的(要先做排序)
SQL>
select * from (select * from
user.user_objects
order by columnname ) where rownum < 11
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言