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

HOW TO GET THE 5TH MAX SALARY USING QUERY?


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
shivakumar .b
Warnings : 1

New User


Joined: 11 May 2005
Posts: 18
Location: bangalore

PostPosted: Mon May 23, 2005 12:27 pm
Reply with quote

HI EVERYBODY,
THIS IS B.SHIVAKUMAR.
I KNOW HOW TO GET THE 2ND MAX SALARY BUT I DON'T KNOW HOW TO GET 5TH OR 6TH HIGHEST SALARY.
CAN ANYBODY PLZ TELL ME HOW TO GET THE 5TH MAX SALARY USING QUERY?
THANKS IN ADVANCE.
REGARDS,
B.SHIVAKUMAR
Back to top
View user's profile Send private message
vasanthanc

New User


Joined: 01 Apr 2005
Posts: 58

PostPosted: Mon May 23, 2005 3:20 pm
Reply with quote

go thru the link below

ibmmainframes.com/viewtopic.php?t=1472

this question has already been answered. kindly search the forum before u post a question.
Back to top
View user's profile Send private message
shivakumar .b
Warnings : 1

New User


Joined: 11 May 2005
Posts: 18
Location: bangalore

PostPosted: Tue May 24, 2005 11:42 am
Reply with quote

hello vasanth, thanks for u r reply.
but still i didnot understand the query for finding Nth maximum salary.
I was not clear about that query, can u xplain me in detail.
thanks in advance.
regards,
b.shivakumar
Back to top
View user's profile Send private message
kkumarv

New User


Joined: 13 May 2005
Posts: 20
Location: Bangalore/India

PostPosted: Tue May 24, 2005 2:28 pm
Reply with quote

SELECT DISTINCT (SALARY)
FROM EMPTABLE A
WHERE 5 = (SELECT COUNT (DISTINCT (B.SALARY)) FROM EMPTABLE B
WHERE A.SALARY <= B.SALARY);
Back to top
View user's profile Send private message
vasanthanc

New User


Joined: 01 Apr 2005
Posts: 58

PostPosted: Tue May 24, 2005 4:00 pm
Reply with quote

First u shud understand the sub query

SELECT COUNT (DISTINCT (B.SALARY)) FROM EMPTABLE B
WHERE A.SALARY <= B.SALARY

In the sub query we are finding the count of employees in emp table having their salary less than or equal to X. (imagine X as some value. The X is taken from emptable of main query and it will be iterated for each salary value).

Now come to main query. It just finds the salary from employee table when the count from sub query matches N (in ur case 5).


Hope u understand...
Back to top
View user's profile Send private message
jkbytes

Active User


Joined: 19 Feb 2005
Posts: 139
Location: South Africa

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

QUERY : TO FIND OUT THE Nth HIGHEST SALARY

SELECT EMPSAL FROM EMPNEW E1 WHERE n =
(SELECT COUNT(*) FROM EMPNEW E2
WHERE E1.EMPSAL<=E2.EMPSAL);


I GUESS THIS IS ANOTHER WAY OF GETTING THE Nth SALARY.

Thanks & Regards,

JKBYTES.
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