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
 
SQL Query

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
babuprasad_g
Currently Banned

New User


Joined: 26 May 2005
Posts: 45
Location: gurgaon

PostPosted: Tue Dec 27, 2005 6:42 pm    Post subject: SQL Query
Reply with quote

Hi folks,

There are 5 departments for each department there is few no of employees.
Extract all the employees for each departments Condition is( salary is greater than average salary of each department).

Please give me the query for this question.


Thanks & Regards
Prasad
Back to top
View user's profile Send private message
References
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Tue Dec 27, 2005 7:30 pm    Post subject: Re: SQL Query
Reply with quote

Code:
SELECT EMP, SAL FROM <TABLE> WHERE SAL >
(SELECT AVG(SAL) FROM <TABLE> WHERE DEPT= 'first') AND DEPT= 'first';
UNION         
SELECT EMP, SAL FROM <TABLE> WHERE SAL >
(SELECT AVG(SAL) FROM <TABLE> WHERE DEPT= 'second') AND DEPT= 'second';
UNION
SELECT EMP, SAL FROM <TABLE> WHERE SAL >
(SELECT AVG(SAL) FROM <TABLE> WHERE DEPT= 'third') AND DEPT= 'third';
UNION
SELECT EMP, SAL FROM <TABLE> WHERE SAL >
(SELECT AVG(SAL) FROM <TABLE> WHERE DEPT= 'fourth') AND DEPT= 'fourth';
UNION
SELECT EMP, SAL FROM <TABLE> WHERE SAL >
(SELECT AVG(SAL) FROM <TABLE> WHERE DEPT= 'fifth') AND DEPT= 'fifth';


The query above will extract all the employees having more than AVG salary dept wise....

Regards,

Priyesh.
Back to top
View user's profile Send private message
khamarutheen

Senior Member


Joined: 23 Aug 2005
Posts: 678
Location: chennai

PostPosted: Tue Dec 27, 2005 7:40 pm    Post subject: Query
Reply with quote

Hi frnd,

Code:
select ename from employee where sal>=(select avg(sal) a from dept);


Use the above query
Back to top
View user's profile Send private message
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Tue Dec 27, 2005 7:49 pm    Post subject: Re: SQL Query
Reply with quote

Quote:
_________________
CORRECT ME IF I M WRONG


khamarutheen....Is that your permanent Signature Line.

Not sure, If I misinterpreted the requirements...Well, If I did, your query seems to be very effiecient on TIME as well as CPU utilization.

Regards,

Priyesh.
Back to top
View user's profile Send private message
khamarutheen

Senior Member


Joined: 23 Aug 2005
Posts: 678
Location: chennai

PostPosted: Tue Dec 27, 2005 7:57 pm    Post subject: query
Reply with quote

Hi priyesh,

Quote:
Is that your permanent Signature Line.


S. since i wanna to enter each time while solving the problem. i made as permanent... icon_smile.gif
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