vote up 0 vote down star

I have a Sales table, with the following columns:

  • employeeID
  • amount
  • date

Now I want to SUM up the last 15 rows, so I am currently doing:

SELECT TOP 15 SUM(amount) FROM Sales ORDER BY [Date] DESC

But I get 15 rows obviously, is there a way I can sum it up and not have to loop through and SUM it on the client side?

flag

22% accept rate

2 Answers

vote up 10 vote down
SELECT
    SUM (Amount)
FROM
    (SELECT TOP 15 amount FROM Sales ORDER BY [Date] DESC) foo
link|flag
vote up 3 vote down
SELECT Sum(amount )
FROM
(
   SELECT Top 15 amount FROM Sales ORDER BY [Date] Desc
) as bar
link|flag
3  
should I use foo or bar? – Blankman May 25 at 14:57
YES ! DEFINITELY ! – marc_s May 25 at 14:59
1  
Split the difference, compromise and use "foobar"... – gbn May 25 at 15:01
lol... good work gbn... "great minds" and all that ;) – Eoin Campbell May 25 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.