Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can You Perform Multiple Counts in One Query?

Status
Not open for further replies.

txdave35

Technical User
Nov 20, 2008
122
US
Hey guys,

I am trying to create a query that will display as such:


Years of Service Count
________________ __________


1 2640

2 3344

3 2345


So in the above example, 2640 employees have one year of service, 3344 employees have 2 years of service.

Is there any way to have a single query perform multiple counts? My query here only counts the first year:


Code:
SELECT                                                                         
  B.MBR_TOT_SVC_YY_CT as "YEARS of SERVICE",
  count(B.MBR_SSN_NBR) as "NUMBER OF EMPLOYEES"                                                                 
                                                            
  FROM                                                                           
  dsnp.pr01_T_MBR_EMPR A,                                                        
  dsnp.pr01_T_MBR_SYS B                                                          
  WHERE                                                                          
  A.MBR_SSN_NBR = B.MBR_SSN_NBR AND                                              
  B.MBR_STAT_CD = '1'  AND                                                       
  A.MBR_F_EMP_DT = (SELECT MAX(D.MBR_F_EMP_DT)                                   
      FROM DSNP.PR01_T_MBR_EMPR D                                                
      WHERE                                                                      
      A.MBR_SSN_NBR = D.MBR_SSN_NBR) AND                                         
 A.AGTY_ID_CD > '00000' AND A.AGTY_ID_CD < '01000' AND                          
  A.AGTY_ID_CD <> '00499' AND A.AGTY_ID_CD <> '00500'  
  and B.MBR_TOT_SVC_YY_CT = 1                          

group by B.MBR_TOT_SVC_YY_CT


Thanks!
 
Disregard, I'm an idiot, I figured it out. lol
 
Yes, you just don't need to include condition on number of years of service, that's all.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top