Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6804821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:30:46+00:00 2026-05-26T19:30:46+00:00

Considering this table: create table t (EventId int ,Section int ,PlayerName nvarchar(50) ,Score int

  • 0

Considering this table:

create table t (EventId    int
               ,Section    int
               ,PlayerName nvarchar(50)
               ,Score      int
               ,Rank       int
               )

I trying to writing the T-SQL that does have EventId as input and using the RANK function to rank by the score but with the sections separated (Ranking individual for each section, Rank 1 for highest score in each section and so on) and then setting/updating the Rank value

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:30:47+00:00Added an answer on May 26, 2026 at 7:30 pm
    UPDATE tbl
    SET [Rank] = t2.[Rank]
    FROM tbl t1
    LEFT OUTER JOIN 
    (
      SELECT EventId
      , Section
      , PlayerName
      , Score
      , RANK() OVER (PARTITION BY EventId, Section ORDER BY Score desc) as [Rank]
      FROM tbl
    ) as t2 
      ON t1.EventId = t2.EventId 
      AND t1.Section = t2.Section
      AND t1.PlayerName = t2.PlayerName
    

    Here it is running on SEDE.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider this example table (assuming SQL Server 2005): create table product_bill_of_materials ( parent_product_id int
Considering this table: create table x (id int, total int, diff int) And this
Considering the following table: create table inttest ( someint INT(10) NULL DEFAULT NULL );
Considering this code, can I be absolutely sure that the finally block always executes,
I have this small code library that I'm considering releasing into Open Source. I
Considering that SQL Azure Federations does not support the IDENTITY property or SEQUENCEs, what
So let's imagine a simple IS-A relationship like this example: create table EntityAbstract( IDEntityAbstract
I have an ai_order table. CREATE TABLE `ai_order`( `id` INT(11) NOT NULL AUTO_INCREMENT, `product_id`
considering this example: public static void main(final String[] args) { final List<String> myList =
Considering this xml document: DECLARE @X XML (DOCUMENT search.SearchParameters) = '<parameters xmlns=http://www.educations.com/Search/Parameters.xsd xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance> <parameter

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.