<legend id='XsUXD'><style id='XsUXD'><dir id='XsUXD'><q id='XsUXD'></q></dir></style></legend>
  • <small id='XsUXD'></small><noframes id='XsUXD'>

    <i id='XsUXD'><tr id='XsUXD'><dt id='XsUXD'><q id='XsUXD'><span id='XsUXD'><b id='XsUXD'><form id='XsUXD'><ins id='XsUXD'></ins><ul id='XsUXD'></ul><sub id='XsUXD'></sub></form><legend id='XsUXD'></legend><bdo id='XsUXD'><pre id='XsUXD'><center id='XsUXD'></center></pre></bdo></b><th id='XsUXD'></th></span></q></dt></tr></i><div id='XsUXD'><tfoot id='XsUXD'></tfoot><dl id='XsUXD'><fieldset id='XsUXD'></fieldset></dl></div>
      <bdo id='XsUXD'></bdo><ul id='XsUXD'></ul>
    1. <tfoot id='XsUXD'></tfoot>

      1. SQL Server 的 LIMIT 和 OFFSET 等价物?

        Equivalent of LIMIT and OFFSET for SQL Server?(SQL Server 的 LIMIT 和 OFFSET 等价物?)
        <legend id='WVceZ'><style id='WVceZ'><dir id='WVceZ'><q id='WVceZ'></q></dir></style></legend>
        <tfoot id='WVceZ'></tfoot>
      2. <i id='WVceZ'><tr id='WVceZ'><dt id='WVceZ'><q id='WVceZ'><span id='WVceZ'><b id='WVceZ'><form id='WVceZ'><ins id='WVceZ'></ins><ul id='WVceZ'></ul><sub id='WVceZ'></sub></form><legend id='WVceZ'></legend><bdo id='WVceZ'><pre id='WVceZ'><center id='WVceZ'></center></pre></bdo></b><th id='WVceZ'></th></span></q></dt></tr></i><div id='WVceZ'><tfoot id='WVceZ'></tfoot><dl id='WVceZ'><fieldset id='WVceZ'></fieldset></dl></div>

            <small id='WVceZ'></small><noframes id='WVceZ'>

              <tbody id='WVceZ'></tbody>

                  <bdo id='WVceZ'></bdo><ul id='WVceZ'></ul>

                  本文介绍了SQL Server 的 LIMIT 和 OFFSET 等价物?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 PostgreSQL 中有 LimitOffset 关键字,它们将允许非常容易地对结果集进行分页.

                  In PostgreSQL there is the Limit and Offset keywords which will allow very easy pagination of result sets.

                  SQL Server 的等效语法是什么?

                  What is the equivalent syntax for SQL Server?

                  推荐答案

                  LIMIT 的等价物是 SET ROWCOUNT,但如果你想要通用分页,最好写一个查询如下:

                  The equivalent of LIMIT is SET ROWCOUNT, but if you want generic pagination it's better to write a query like this:

                  ;WITH Results_CTE AS
                  (
                      SELECT
                          Col1, Col2, ...,
                          ROW_NUMBER() OVER (ORDER BY SortCol1, SortCol2, ...) AS RowNum
                      FROM Table
                      WHERE <whatever>
                  )
                  SELECT *
                  FROM Results_CTE
                  WHERE RowNum >= @Offset
                  AND RowNum < @Offset + @Limit
                  

                  这里的优点是偏移和限制的参数化,以防您决定更改分页选项(或允许用户这样做).

                  The advantage here is the parameterization of the offset and limit in case you decide to change your paging options (or allow the user to do so).

                  注意:@Offset 参数应该为此使用从一开始的索引,而不是正常的从零开始的索引.

                  Note: the @Offset parameter should use one-based indexing for this rather than the normal zero-based indexing.

                  这篇关于SQL Server 的 LIMIT 和 OFFSET 等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Select n random rows from SQL Server table(从 SQL Server 表中随机选择 n 行)
                  SQL query to select dates between two dates(用于选择两个日期之间的日期的 SQL 查询)
                  How can I delete using INNER JOIN with SQL Server?(如何在 SQL Server 中使用 INNER JOIN 进行删除?)
                  Table Naming Dilemma: Singular vs. Plural Names(表命名困境:单数与复数名称)
                  INSERT statement conflicted with the FOREIGN KEY constraint - SQL Server(INSERT 语句与 FOREIGN KEY 约束冲突 - SQL Server)
                  How ROWNUM works in pagination query?(ROWNUM 如何在分页查询中工作?)

                        <small id='r5TBf'></small><noframes id='r5TBf'>

                        <i id='r5TBf'><tr id='r5TBf'><dt id='r5TBf'><q id='r5TBf'><span id='r5TBf'><b id='r5TBf'><form id='r5TBf'><ins id='r5TBf'></ins><ul id='r5TBf'></ul><sub id='r5TBf'></sub></form><legend id='r5TBf'></legend><bdo id='r5TBf'><pre id='r5TBf'><center id='r5TBf'></center></pre></bdo></b><th id='r5TBf'></th></span></q></dt></tr></i><div id='r5TBf'><tfoot id='r5TBf'></tfoot><dl id='r5TBf'><fieldset id='r5TBf'></fieldset></dl></div>
                      1. <legend id='r5TBf'><style id='r5TBf'><dir id='r5TBf'><q id='r5TBf'></q></dir></style></legend>
                            <tbody id='r5TBf'></tbody>
                          <tfoot id='r5TBf'></tfoot>

                            <bdo id='r5TBf'></bdo><ul id='r5TBf'></ul>