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 

沒有留言: