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

SQL Query


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

New User


Joined: 26 May 2005
Posts: 45
Location: gurgaon

PostPosted: Tue Dec 27, 2005 6:42 pm
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
priyesh.agrawal

Senior Member


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

PostPosted: Tue Dec 27, 2005 7:30 pm
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

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Tue Dec 27, 2005 7:40 pm
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

Senior Member


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

PostPosted: Tue Dec 27, 2005 7:49 pm
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

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Tue Dec 27, 2005 7:57 pm
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
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