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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:33:29+00:00 2026-05-11T20:33:29+00:00

I have a co-worker who is working on a table with an ‘amount’ column.

  • 0

I have a co-worker who is working on a table with an ‘amount’ column.
They would like to get the top 5 amounts and the sum of the amounts in the same query.

I know you could do this:

SELECT TOP 5 amount FROM table 
UNION SELECT SUM(amount) FROM table
ORDER BY amount DESC

But this produces results like this:

1000  (sum)
 100
  70
  50
  30
  20

When what they really need is this:

100 | 1000
 70 | 1000
 50 | 1000
 30 | 1000
 20 | 1000

My intuitive attempts to achieve this tend to run into grouping problems, which isn’t such an issue when you are selecting a different column, but is when you want to use an aggregate function based on the column you are selecting.

  • 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-11T20:33:30+00:00Added an answer on May 11, 2026 at 8:33 pm

    You can use a CROSS JOIN for this:

    SELECT TOP 5 a.amount, b.sum
    FROM table a
    CROSS JOIN (SELECT SUM(amount) sum FROM table) b
    ORDER BY amount DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a project with developers who have not worked with Ruby OR
I am working on some code written by a co-worker who no longer works
Hi normally I would do this with a Background Worker, but I would like
In the past I've worked with a number of programmers who have worked exclusively
I have a worker thread that is listening to a TCP socket for incoming
I have a co-worker that maintains that TRUE used to be defined as 0
I have a co-worker that swears by //in a singleton Constants class public static
I have several different c# worker applications that run various continuous tasks: sending emails
I have one website on my server, and my IIS Worker Process is using
I have a console application. A class (let's say Worker) does some work in

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.