<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 等价物?

        时间:2023-07-18
        <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 等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Scope_Identity()、Identity()、@@Identity 和 Ident_Current() 之间有 下一篇:JOIN 和 INNER JOIN 的区别

                  相关文章

                      <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>
                      <tfoot id='r5TBf'></tfoot>

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