程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle通過行范圍查詢取4至10行,oracle10行

oracle通過行范圍查詢取4至10行,oracle10行

編輯:Oracle教程

oracle通過行范圍查詢取4至10行,oracle10行


不能直接用rownum,要查詢出來以後用別名轉換。

以EMP表為范例,取4至10行:

select * from (select rownum id,t.* from emp t) where id between 4 and 10;

有需要排序的,一定要這樣處理:

select * from ( 
select rownum rn,t.* from ( 
select a.* from eba02 a order by eba003) t where rownum <= 110) 
where rn >= 110;

oracle中怎查詢不在某范圍內的數據信息?

可以用 not in 或者not exist
 

oracle根據選擇的時間范圍查詢相應的數據

select * from TableA where to_char(startDate,'YYYY-MM-DD')>='2011-09-01' and to_char(endDate,'YYYY-MM-DD')<='2011-09-012' ;
另外如果是程序裡面用可以做綁定參數,免得每次都解析SQL語句,可以減少查詢時間
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved