1. 程式人生 > >限制oracle資料庫表的輸出記錄條數

限制oracle資料庫表的輸出記錄條數

rownum是oracle的一個關鍵字

你查出來的資料都有一個rownum
在where中加入rownum<50意思是顯示你查出來的前50個數據
例如:
select * from sapsr3.vbap where rownum < 50