Workaround for SQL Server when using Row_number _mssql

Source: Internet
Author: User
Set SQL Server to use Row_number when not sorted

--1. See NHibernate is so written pagination, it is easier to understand the writing (there should be no efficiency problems?) )
--with just set an alias?

[SQL]
With query as (select Row_number () 0) as RowNum, * from Product)
SELECT * FROM query where rownum BETWEEN 5 and 10

--2.row_number must be written over (orders by * *), sometimes I do not want to sort at all, want to in the original order (the sort also takes time)

--The method is:
Select Row_number () over (order by (select 0)) as rownum,* from Product

The sort is:
Select Row_number () over (order by oper_date Desc) as rownum,* from Product
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.