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

DB2 QUERY


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

New User


Joined: 23 Mar 2005
Posts: 10
Location: Noida

PostPosted: Tue May 24, 2005 5:44 pm
Reply with quote

Hi,

I am learning DB2 and have come across a query.

I have a emp table with emp id, emp name and emp location.
Here emp location is not a unique value.

Please tell me a query on how do u get the total count of how many time each location exists?

Distinct will just give the different location but i also want the no of times same location is repeated.

Thanks,
Richa
Back to top
View user's profile Send private message
chani823

New User


Joined: 30 Mar 2005
Posts: 5

PostPosted: Tue May 24, 2005 6:29 pm
Reply with quote

Hi Richa

required query is

Code:
select distinct emp_dept, count(emp_dept) as dept_cnt from emp
group by emp_dept



Regards
Chani
Back to top
View user's profile Send private message
vasanthanc

New User


Joined: 01 Apr 2005
Posts: 58

PostPosted: Wed May 25, 2005 10:12 am
Reply with quote

U need not to use distinct. Following query will do

Select location, count(location) as tot_count from emp group by loction
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 Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top