Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
DB2 QUERY

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
richa.setia

New User


Joined: 23 Mar 2005
Posts: 10
Location: Noida

PostPosted: Tue May 24, 2005 5:44 pm    Post subject: DB2 QUERY
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
References
chani823

New User


Joined: 30 Mar 2005
Posts: 5

PostPosted: Tue May 24, 2005 6:29 pm    Post subject: Re: DB2 QUERY
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

Active User


Joined: 01 Apr 2005
Posts: 59

PostPosted: Wed May 25, 2005 10:12 am    Post subject:
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
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1