用sql语句如何查询前10行之后的10行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用sql语句如何查询前10行之后的10行相关的知识,希望对你有一定的参考价值。
参考技术A select top 10 * from 表名 select top 10 * from 表名 order by 自动增长编号 desc 请把上述两行的汉字替换成你的表名或列名(字段名) 参考技术B 两次排序 升序取前20 再降序取前10 参考技术C select top 10 * from A where mainKey is not in(
select top 10 mainKey from A
)
A为表名,mainKey为表的主键 参考技术D select top(20) * from 表where lsh not in(select top(10) lsh from 表where 条件) and 条件 第5个回答 推荐于2017-09-29 select top 10 * from (select top 20 * from 表 order by id asc) as a order by id desc
以上是关于用sql语句如何查询前10行之后的10行的主要内容,如果未能解决你的问题,请参考以下文章