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

Efficient SQL query to get the EMPID


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

New User


Joined: 26 Sep 2007
Posts: 7
Location: Chennai

PostPosted: Fri Jan 02, 2009 7:40 pm
Reply with quote

Hi,

Can any one please help me out in writing an efficient query to get the Employes earning max. salary in their own dept. using a sub queries..

Employee table has columns as below

EmpID EmpName DeptID Salary
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Sun Jan 04, 2009 11:52 am
Reply with quote

Hi,

Do you have some in-efficient solution with you, you are currently working on ?
Back to top
View user's profile Send private message
Prasanthhere

Active User


Joined: 03 Aug 2005
Posts: 306

PostPosted: Mon Jan 05, 2009 11:16 am
Reply with quote

How about trying this

Select Max(Salary),DeptID from Employee
Group by DeptID;
Back to top
View user's profile Send private message
abhishek dadhichi

New User


Joined: 19 Apr 2007
Posts: 37
Location: Bangalore

PostPosted: Mon Jan 05, 2009 2:59 pm
Reply with quote

Hi Pawan,

Please try this:

sel emp_id,dept_id
from emp_table
where sal in
(sel max(sal) from emp_table);
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Mon Jan 05, 2009 3:33 pm
Reply with quote

abhishek dadhichi,

The above SQL will not give a dept level summary as asked by the TS.
Back to top
View user's profile Send private message
abhishek dadhichi

New User


Joined: 19 Apr 2007
Posts: 37
Location: Bangalore

PostPosted: Mon Jan 05, 2009 3:54 pm
Reply with quote

Hi,

Please try this one:

sel empName
from employee
where deptid in
(sel deptid,max(salary) from employee
group by 1);



Thanks,
Abhishek
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