Connecting Tech Pros Worldwide Help | Site Map

Multiple Sum and Join

  #1  
Old October 4th, 2008, 04:33 PM
Newbie
 
Join Date: Oct 2008
Posts: 1
I have two tables i would like to join to show bonus earned this month and total this year.
First table: empl.

emplID | Name
1 | Bob
2 | James


Second table: Bonus.

empl_id | month | Bonus
1 | 1 | 1000
2 | 1 | 750
1 | 2 | 500
2 | 2 | 1000
1 | 3 | 250
2 | 3 | 500


The output im looking for is (bonus month 3):
Name | Bonus this month | Bonus total
Bob | 250 | 1750
James | 500 | 2250


This is the closest i have got and it fails. So if anyone can point me in the right direction i would be very thankful.
Failing query:

Expand|Select|Wrap|Line Numbers
  1. select e.name, sum(b.bonus) as total,  sum(b1.bonus) as thismth from (empl as e INNER JOIN bonus as b on e.emplID=b.empl_id) INNER JOIN bonus as b1 on e.emplID=b1.empl_id group by e.name
  #2  
Old October 6th, 2008, 07:42 AM
deepuv04's Avatar
Expert
 
Join Date: Nov 2007
Posts: 202

re: Multiple Sum and Join


Hi,
Try the following query.

Expand|Select|Wrap|Line Numbers
  1.  
  2. CREATE TABLE EMPL
  3. (  emplID INT,
  4.    Name VARCHAR(20)
  5. )
  6.  
  7. INSERT INTO EMPL
  8. select 1 , 'Bob' UNION
  9. SELECT 2 , 'James'
  10.  
  11.  
  12. CREATE TABLE Bonus (
  13. empl_id int, month int, Bonus int)
  14.  
  15. INSERT INTO Bonus (
  16. empl_id , month , Bonus)
  17. SELECT 1 , 1 , 1000 UNION
  18. SELECT 2 , 1 , 750 UNION
  19. SELECT 1 , 2 , 500 UNION
  20. SELECT 2 , 2 , 1000 UNION
  21. SELECT 1 , 3 , 250 UNION
  22. SELECT 2 , 3 , 500
  23.  
  24.  
  25. SELECT b.Empl_id,Name,Max(B.month),
  26.         (SELECT Bonus FROM Bonus WHERE Empl_id = B.Empl_id AND [month] = MAX(B.month)) as 'Bonus this month',
  27.         sum(B.bonus) as 'Bonus Earned'
  28. FROM   EMPL INNER JOIN
  29.        Bonus B ON EMPL.emplID = B.Empl_id
  30. GROUP BY B.Empl_id,Name
  31.  
  32.  
  33.  
Thanks
Reply


Similar Threads
Thread Thread Starter Forum Replies Last Post
Query Returning Multiple Results of Same Record Also Calculation Errors (Sometimes) klarae99 answers 10 April 2nd, 2008 04:09 PM
Group by returning multiple data aspamit answers 2 January 16th, 2007 09:31 AM
1 SP with dynamic input parameters and multiple rows as the source of the query serge answers 7 December 12th, 2005 01:25 AM
Multiple Table Query using Sum Function Scott Cannon answers 2 November 12th, 2005 11:52 PM