IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Query needed


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sivatechdrive

Active User


Joined: 17 Oct 2004
Posts: 191
Location: hyderabad

PostPosted: Tue Nov 27, 2007 7:03 pm
Reply with quote

Hi all

There are 2 fields in my table and I have the data in my table as below
PROJCODE EMPNAME
====================
NAL001 SIVA
NAL001 PRASAD
NAL001 RAMESH
NAL001 SIVA
NAL001 RAMESH
GAL001 ABC
GAL001 ABC
GAL001 ABC
GAL001 ABC
GAL001 ABC
PAL001 CAD
PAL001 CAD
PAL001 NSC
PAL001 NSC
PAL001 NSC


THERE ARE 5 EMPLOYEES FOR EACH PROJECT & i WANT THE COUNT OF EMPLOYEES WITH OUT DUPLICATES
PROJCODE COUNT
NAL001 3 (AS SIVA,RAMESH ARE REPEATING)
GAL001 1 (AS ABC IS THE ONLY THING PRESENT)
PAL001 2 (AS CAD,NSC ARE REPEATING)


PLEASE HELP ME

THANKS N REGARDS
PRASAD
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Tue Nov 27, 2007 7:22 pm
Reply with quote

Code:
SELECT PROJCODE, COUNT(*) FROM
(SELECT DISTINCT PROJCODE, EMPNAME FROM TABLE) A
GROUP BY PROJCODE;
Back to top
View user's profile Send private message
muthuvel

Active User


Joined: 29 Nov 2005
Posts: 217
Location: Canada

PostPosted: Tue Nov 27, 2007 7:22 pm
Reply with quote

This may help you

Code:
Select  PROJCODE,COUNT(DISTINCT EMPNAME )
From Table A


Please off CAPS before you post
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Mainframe Programmer with CICS Skill... Mainframe Jobs 0
Search our Forums:

Back to Top