博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle自带总页数分页sql
阅读量:5038 次
发布时间:2019-06-12

本文共 415 字,大约阅读时间需要 1 分钟。

 string strSQL = string.Format(@"select * from( with temp as (select * from * where {0} order by CREATE_TIME DESC)

                                                select (select count(1) from temp) total_row, temp.* from temp where rownum = 1 union all
                                                select * from (select rownum total_row,temp.* from temp where rownum <= {2})  where total_row > {1})", strWhere, (pageindex - 1) * pagesize, pageindex * pagesize);

转载于:https://www.cnblogs.com/qbq01/p/6951276.html

你可能感兴趣的文章
PAT (Basic Level) Practice 1001 害死人不偿命的(3n+1)猜想
查看>>
[UIDevice currentDevice].model
查看>>
NAVICAT 拒绝链接的问题
查看>>
【oracle】dmp导数据库
查看>>
微软 SqlHelper代码、功能、用法介绍:高效的组件
查看>>
丰子恺-《豁然开朗》
查看>>
JavaScript 对象
查看>>
原生js轮播图(面向对象)
查看>>
数据分析软件及spss简单操作
查看>>
自定义通信协议
查看>>
Unity3d--Space Shooter(官方教程)--学习感想(3)
查看>>
java中Collections.sort()方法实现集合排序
查看>>
nodejs笔记之事件循环
查看>>
JVM之垃圾收集器
查看>>
Windows下R画图举例
查看>>
php-fpm 重启 nginx单独配置 重启
查看>>
JS正则表达式RegExp 对象
查看>>
Springboot
查看>>
go语言之进阶篇值语义和引用语义
查看>>
go语言之进阶篇无缓冲channel
查看>>