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 7012633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:16:52+00:00 2026-05-27T22:16:52+00:00

It would be easier to explain with an example. Suppose I wanted to get

  • 0

It would be easier to explain with an example. Suppose I wanted to get at most 5 items per group.

My input would be a table looking like this:

Item    Count
A        2
A        3
A        3
B        4
B        4
B        5
C        1

And my desired output would look like this:

Item     Count
A        5
A>5      3
B        4
B>5      9
C        1

An alternative output that I could also work with would be

Item    Count    RunningTotal
A       2        2
A       3        5
A       3        8
B       4        4
B       4        8
B       5        13
C       1        1

I can use ROW_NUMBER() to get the top X records in each group, however my requirement is to get the top X items for each group, not X records. My mind is drawing a blank as to how to do this.

  • 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-27T22:16:53+00:00Added an answer on May 27, 2026 at 10:16 pm
    declare @yourTable table (item char(1), [count] int)
    
    insert into @yourTable
    select 'A', 2 union all
    select 'A', 3 union all
    select 'A', 3 union all
    select 'B', 4 union all
    select 'B', 4 union all
    select 'B', 5 union all
    select 'C', 1
    
    ;with cte(item, count, row) as (
        select *, row_number() over ( partition by item order by item, [count]) 
        from @yourTable
    )
    select t1.Item, t1.Count, sum(t2.count) as RunningTotal from cte t1
    join cte t2 on t1.item = t2.item and t2.row <= t1.row
    group by t1.item, t1.count, t1.row
    

    Result:

    Item Count       RunningTotal
    ---- ----------- ------------
    A    2           2
    A    3           5
    A    3           8
    B    4           4
    B    4           8
    B    5           13
    C    1           1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My question is easier to explain with an example: I have a phone number
Ok, the title may not be the most descriptive. It's easier to explain with
This is easier to explain with some code so I'll give an example first:
My job would be easier, or at least less tedious if I could come
Maybe world peace would be easier, but I have a problem with the widths
In a world where IE didn't exist, what things would be easier, less hacky,
How do you connect these to your computer? Which one would be easier to
What would make development with SharePoint easier?
It would make life so much easier!
Is it possible using Linq to create a group where items fall into more

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.