[SQL] Add the ordinal limit (row_number, rank, over) to the result of querying rows)

Source: Internet
Author: User

After Ms sql2005, a number of sequential numbers are added to the query result.

The following example uses the northwind Resource

The parameters are as follows:

1. row_number

Sort by the specified vertex and add the vertex Based on the vertex.

For example:

Select row_number () over (order by customerid) as rowid, * from orders

 

2. Rank

According to the ranking position, the same information is ranked in the same rank, and the next difference will [skip]

Select rank () over (order by customerid) as rowid, * from orders

3. dense_rank

According to the ranking position, the same information is ranked in the same rank, and the next difference will [skip]

 

Select -- row_number () over (order by customerid) as ROWID--RANK () over (order by customerid) as rowiddense_rank () over (order by customerid) as rowid, * from orders

Remember me to avoid forgetting

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.