Group datasets and sort groups internally

Source: Internet
Author: User

Suppose there is a table as follows (for example only ):

Create Table DBO. Score
(
Scoreid int identity (1, 1)
, Student nvarchar (max)
, Subjectid nvarchar (max)
, Scorenumber int
)

Insert into score values ('A', 'mat', 96)
Insert into score values ('A', 'China', 90)
Insert into score values ('A ','ProgramDesign ', 77)
Insert into score values ('B', 'mat', 76)
Insert into score values ('B', 'China', 66)
Insert into score values ('B', 'program Design', 88)
Insert into score values ('C', 'mat', 60)
Insert into score values ('C', 'China', 80)
Insert into score values ('C', 'Programming ', 66)

Sort scores of each subject, for example:

Available new functions in SQL Server 2005:

 
Select student, subjectid, scorenumber, row_number () over (partition by subjectid order by scorenumber DESC) as [Rank]
 
From score

The where statement can be used to filter out the first few students in each subject.

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.