主页 > 知识库 > sql 查询记录数结果集某个区间内记录

sql 查询记录数结果集某个区间内记录

热门标签:铁路电话系统 百度竞价排名 AI电销 地方门户网站 Linux服务器 网站排名优化 呼叫中心市场需求 服务外包
以查询前20到30条为例,主键名为id

方法一: 先正查,再反查
select top 10 * from (select top 30 * from tablename order by id asc) A order by id desc

方法二: 使用left join
select top 10 A.* from tablename A
left outer join (select top 20 * from tablename order by id asc) B
on A.id = B.id
where B.id is null
order by A.id asc

方法三: 使用not exists
select top 10 * from tablename A
where id not exists
(select top 20 * from tablename B on A.id = B.id)

方法四: 使用not in
select top 10 * from tablename
where id not in
(select top 20 id from tablename order by id asc)
order by id asc

方法五: 使用rank()
select id from
(select rank() over(order by id asc) rk, id from tablename) T
where rk between 20 and 30

中第五种方法看上去好像没有问题,查了下文档,当over()用于rank/row_number时,整型列不能描述一个列,所以会产生非预期的效果. 待考虑下,有什么办法可以修改为想要的结果.
您可能感兴趣的文章:
  • SQL Server数据库按百分比查询出表中的记录数
  • mysql实现查询最接近的记录数据示例
  • 关于关系数据库如何快速查询表的记录数详解

标签:铜川 兰州 衡水 仙桃 湖南 黄山 湘潭 崇左

巨人网络通讯声明:本文标题《sql 查询记录数结果集某个区间内记录》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266