博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
--查询50到80行数据
阅读量:6555 次
发布时间:2019-06-24

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

 

--oracle

select * from(
select rownum r,t.* from (select * from testtable)t where rownum<80
)where r>=50;

--sqlserver
select * from (
select ROW_NUMBER() over(order by id) as rownum,*from ATTENCE
)a
where rownum between 50 and 80

--mysql
SELECT * FROM test LIMIT 50,80;

转载于:https://www.cnblogs.com/Yxxxxx/p/6759560.html

你可能感兴趣的文章
python处理xml实例
查看>>
从《一生所爱》到《世间始终你好》
查看>>
UIStackView相关
查看>>
数据库
查看>>
20145240问卷调查
查看>>
[linux] uptime 命令中关于平均负载的解释
查看>>
Algs4-1.4.25扔两个鸡蛋
查看>>
Algs4-2.4.22调优先队列的整数组大小
查看>>
设计模式之建造者
查看>>
模块化的JavaScript开发的优势在哪里
查看>>
上海某软件公司电话面试分享
查看>>
TCP 和 UDP 协议发送数据包的大小 (转载)
查看>>
用Alamofire进行网络请求的一段代码解析(一)
查看>>
elasticsearch的percolator操作
查看>>
windows 定时任务:schtasks,定时关闭网易云音乐
查看>>
C# Note17: 使用Ionic.Zip.dll实现解压缩文件
查看>>
Mina Basics 06-传输
查看>>
c 编译异常 switch 之a label can only be part of a statement and a declaration is not a statement...
查看>>
nullnullDataTable 排序
查看>>
Codeforces Ilya and Queries
查看>>