说说oracle分页的sql语句
说说oracle分页的sql语句,分排序和不排序两种。
当结果集不需要进行排序时,每页显示条数为:rowPerPage,当前页数为:currentPage。
1、 相对来说,这种查询速度会快一些,因为当currentPage小时,嵌套语句查询的结果集小。但当currentPage 变大时,查询速度会慢慢变慢。当结果集很大时,查询第一页跟最后一页的速度会有明显变化。(倾向用这种!)
select * from(
select rownum r, field1,field2 from table_name where rownum <= currentPage * rowPerPage
)
where r > (currentPage-1) * rowPerPage
2、相对来说,这种查询速度会慢一些,无论当currentPage大小,嵌套语句查询的结果集都是一样多的,都是整个结果集。但是,当结果集很大时,查询第一页跟最后一页的速度不会有明显变化。
select * from(
select rownum r, field1,field2 from table_name
)
where r > (currentPage-1) * rowPerPage and r <= currentPage * rowPerPage
当需要进行排序时,以第一种方式进行示例如下:
select * from(
select rownum r, a.* from (
select field1,field2 from table_name order by field1
) a where rownum <= currentPage * rowPerPage
) where r > (currentPage-1) * rowPerPage
还有这个,也是很好用的:
select * from (select a.*,rownum row_num from (select * from tabelTest t order by t.id ) a ) b where b.row_num between (currentPage-1)*pagesize and currentPage*pagesize//
public string List(int page, int rows, string sort, string order, string DataBase)
{
string where = Common.HqlQeuryHelp.GetWhere(typeof(Model.TIPTOP.CPF_FILE), "CPF01,CPF02,CPF29,CPF31,CPF70,CPF35");
//string OracelStr = "select cpf01,cpf02,cpf29,cpf31,cpk02,cqi02,cqi06,cqi09,cqi06-cqi09 as diff,cpf70,cpf35,rownum as rowi from ";
// OracelStr += "tekvertps.cqi_file,tekvertps.cpf_file it,tekvertps.cpk_file where cpf31=cpk01 and cpf01=cqi01 and cpf35 is null and rownum<100"; string OracelStr = "select cpf01,cpf02,cpf29,cpf31,cpk02,cqi02,cqi06,cqi09,cqi06-cqi09 as diff,cpf70,cpf35,rownum as r from ";
OracelStr += "(select cpf01,cpf02,cpf29,cpf31,cpk02,cqi02,cqi06,cqi09,cqi06-cqi09 as diff,cpf70,cpf35,rownum row_num from ";
OracelStr += "tekvertps.cpf_file, tekvertps.cqi_file,tekvertps.cpk_file where cpf31=cpk01 and cpf01=cqi01 and cpf35 is null order by cpf01 ) it ";
OracelStr += "where it.row_num between " + (page-1)*rows +" and " + page*rows; if (!string.IsNullOrEmpty(where)) { OracelStr += " and " + where; }
OracleDataReader dr = OA.Common.OracleHelper.ExecuteReader(OA.Common.OracleHelper.ConnectionStringTipTopTPS, CommandType.Text, OracelStr, null);
var cpfbll = new BLL.TIPTOP.CPF_FILE(DataBase);
var count = cpfbll.GetTextCount(where); List<object> listView = new List<object>();
foreach (var i in dr)
{
listView.Add(new
{
CPF01 = dr["CPF01"].ToString(),
CPF02 = dr["CPF02"].ToString(),
CPF29 = dr["CPF29"].ToString(),
CPF31 = dr["CPF31"].ToString(),
CPK02 = dr["CPK02"].ToString(),
CQI02 = dr["CQI02"].ToString(),
CQI06 = dr["CQI06"].ToString(),
CQI09 = dr["CQI09"].ToString(),
DIFF = dr["DIFF"].ToString(),
CPF70 = Formate_Date((DateTime)dr["CPF70"]),
CPF35 = dr["CPF35"].ToString()
});
}
var ret = new
{
total = count,
rows = listView
};
return ToJsonString(ret);
}
前台(MVC easyui-datagrid):
<div region="center" border="false">
<table class="easyui-datagrid" id="details" data-options="fit:true,singleSelect:true, fitColumns:true,pageSize:10,
pagination:true,rownumbers:true,border:true,url:serverUrl.list,view: detailview,detailFormatter:detailformatter,onExpandRow:rowExpand">
<thead>
<tr>
<th data-options="field:'CPF01',sortable:true,width:100">員工代號</th>
<th data-options="field:'CPF02',sortable:true,width:100">姓名</th>
<th data-options="field:'CPF29',sortable:true,width:100">部門別</th>
<th data-options="field:'CPF31',sortable:true,width:100">職稱代號</th>
<th data-options="field:'CPK02',sortable:true,width:100">職稱</th>
<th data-options="field:'CQI02',sortable:true,width:100">年度</th>
<th data-options="field:'CQI06',sortable:true,width:100">特休天數</th>
<th data-options="field:'CQI09',sortable:true,width:100">已休天數</th>
<th data-options="field:'DIFF',sortable:true,width:100">未休天數</th>
<th data-options="field:'CQH071S1',sortable:true,width:100">事假天數</th>
<th data-options="field:'CQH071S2',sortable:true,width:100">病假天數</th>
<th data-options="field:'CPF70',sortable:true,width:100">到職日期</th>
<th data-options="field:'CPF35',sortable:true,width:100">離職日期</th>
</tr>
</thead>
</table>
</div>
说说oracle分页的sql语句的更多相关文章
- oracle 分页的sql语句
已知有两种方法效率上貌似第一种更优: 1. select * from( select t1.*, rownum n from (select * from cm_log order by oper_ ...
- Oracle分页查询sql语句
1. select * from ( select t.*, rownum RN from TABLE_NAME t ) where RN > 0 and RN <= 15 2. se ...
- Oracle数据库 基础SQL语句练习
一.说明 第一次使用Oracle,想做一些练习,熟悉一些oracle. 表:使用的是scott用户,默认的表 具体表讲解,可以参考该文档:https://www.cnblogs.com/xjcheng ...
- oracle中查看sql语句的执行计划
1.在pl/sql中打开cmd命令容器 2.在cmd命令窗口中输入:explain plan for select * from t; 3.查看sql语句的执行计划:select * from tab ...
- Oracle 的分页查询 SQL 语句
Oracle的分页查询语句基本上可以按照本文给出的格式来进行套用. 分页查询格式: SELECT * FROM (SELECT A.*, ROWNUM RN FROM (SELECT * FROM T ...
- ORACLE分页查询SQL语法——最高效的分页
--1:无ORDER BY排序的写法.(效率最高)--(经过测试,此方法成本最低,只嵌套一层,速度最快!即使查询的数据量再大,也几乎不受影响,速度依然!) SELECT * FROM (SELECT ...
- ORACLE分页查询SQL语法——高效的分页
--1:无ORDER BY排序的写法.(效率最高)--(经过测试,此方法成本最低,只嵌套一层,速度最快!即使查询的数据量再大,也几乎不受影响,速度依然!) SELECT * FROM (SELECT ...
- 160321、ORACLE分页查询SQL语法——最高效的分页
--1:无ORDER BY排序的写法.(效率最高) --(经过测试,此方法成本最低,只嵌套一层,速度最快!即使查询的数据量再大,也几乎不受影响,速度依然!) SELECT * FROM (SELE ...
- Oracle数据库的sql语句性能优化
在应用系统开发初期,由于开发数据库数据比较少,对于查询sql语句,复杂试图的编写等体会不出sql语句各种写法的性能优劣,但是如果将应用系统提交实际应用后,随着数据库中数据的增加,系统的响应速度就成为目 ...
随机推荐
- dom classList
才发现dom对象就有classList属性,通过它可以判断该dom是否有指定的class名存在. var tar = e.target; var classList = tar.classList; ...
- xdebug和xhprof
在安装时出现不是:1% 不是有效的win32 应用程序原因可能是是下载了64位的.dll扩展与当前的php不兼容
- Almost Sorted Array---hdu5532(简单dp)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5532 题意:问一个含有n个数的序列,删除一个数后是否有序(递增或递减都可以) 我们只要求一下最长上升子 ...
- Dictionary、SortedDictionary、Hashtable 、SortedList
HashTable数据结构存在问题:空间利用率偏低.受填充因子影响大.扩容时所有的数据需要重新进行散列计算.虽然Hash具有O(1)的数据 检索效率,但它空间开销却通常很大,是以空间换取时间.所以Ha ...
- NSOperationQueue 多线程
staticNSOperationQueue * queue; - (void)viewDidLoad { [superviewDidLoad]; queue = [[NSOperationQueue ...
- 微信公众平台开发(112) 自动更新微信access token
关键字:Memcache access_token 更新 存储 7200 本文介绍如何存储及更新 access token的方法. 一.Access Token access_token是公众号的全局 ...
- (copy) Linux Commands Cheat Sheet in Black & White
source: http://linoxide.com/linux-command/linux-commands-cheat-sheet/
- winston日志管理2
上次讲到 Exceptions 例外 Handling Uncaught Exceptions with winston 使用winston处理未捕获的异常(这个如果对于异步,我不是很喜欢用) 使用 ...
- Python模块(json)
json json模块,用来处理json风格的数据 一.json的数据格式 json是javascripts的标准格式,json的格式是由若干个 键/值(key,values) 对的集合,该集合可以理 ...
- MSBUID相关(笔记)
用于创建可靠的最佳实践 Build,Part 1 http://msdn.microsoft.com/zh-cn/magazine/dd419659.aspx 用于创建可靠的最佳实践 Build,Pa ...