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

  • Home
  • SEARCH
  • 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 6120921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:43:31+00:00 2026-05-23T15:43:31+00:00

As a beginner in Sql Server 2005, i should get some help in getting

  • 0

As a beginner in Sql Server 2005, i should get some help in getting top 10 from a table.

The scenario is like, a table Invitecount has multiple records for each userid. i have distinct userid’s with the following sql query

Select distinct(userid) from inviteCount 

For each userid, i get the number of points using the following query

Select sum(points) from invitecount 
where UserID = 126429

And after i get the sum, i should have top 10 users with max points. My problem here is with writing all these statements together using arrays, etc.

IF someone could help me, i really appreciate it. Thanks in advance!

  • 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-23T15:43:31+00:00Added an answer on May 23, 2026 at 3:43 pm

    You want something like:

    select top 10
        userid,
        pointstotal = sum(points)
    from
        invitecount
    group by userid
    order by sum(points) desc
    

    Note the order by.

    A fancier version would be

    select 
        userid
        pointstotal = sum(points) over (partition by userid),
        row_number = row_number() over (partition by userid order by sum(points) desc)
    from 
        invitecount i
    where 
        row_number <= 10
    

    (untested – so probably needs a tweak)

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

Sidebar

Related Questions

I am very beginner in SQL Server 2005 and I am learning it from
I am a beginner in databases. What edition of sql server i should start
SQL Server Beginner question: I'm trying to introduce a computed column in SQL Server
I am a beginner SQL user (not formally trained; OJT only) and need some
my company wants to sponsor me for some online sql server DBA classes. can
Is there a way in T-SQL (SQL Server 2005) to assign a whole record
I'm a beginner with C#, ASP.NET, SQL Server Express and programming in general. I'm
This is a beginner question, I have to create some SQL Reports with business
SQL server 2008 sp2 I am a beginner and finding that XQuery syntax especially
SQL 2008 - Beginner to DBA I am confused between SQL Server Network Configuration

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.