SQL Server 中的行偏移量

Row Offset in SQL Server(SQL Server 中的行偏移量)
本文介绍了SQL Server 中的行偏移量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SQL Server 中是否有任何方法可以从给定偏移量开始获取结果?例如,在另一种类型的 SQL 数据库中,可以这样做:

Is there any way in SQL Server to get the results starting at a given offset? For example, in another type of SQL database, it's possible to do:

SELECT * FROM MyTable OFFSET 50 LIMIT 25

获得结果 51-75.SQL Server 中似乎不存在此构造.

to get results 51-75. This construct does not appear to exist in SQL Server.

如何在不加载所有我不关心的行的情况下完成此操作?谢谢!

How can I accomplish this without loading all the rows I don't care about? Thanks!

推荐答案

我会避免使用 SELECT *.指定您实际需要的列,即使它可能是所有列.

I would avoid using SELECT *. Specify columns you actually want even though it may be all of them.

SQL Server 2005+

SELECT col1, col2 
FROM (
    SELECT col1, col2, ROW_NUMBER() OVER (ORDER BY ID) AS RowNum
    FROM MyTable
) AS MyDerivedTable
WHERE MyDerivedTable.RowNum BETWEEN @startRow AND @endRow

SQL Server 2000

在 SQL Server 2000 中高效地对大型结果集进行分页

一种更高效的大型结果集分页方法

这篇关于SQL Server 中的行偏移量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)