Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Oracle only
Search
Advanced Search
Forums
Product Launch
Updates
Today's Posts
Member List
Calendar
Home
Forum
Topic
Oracle
Top 10 salaries
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
Suneelhema
New Member
Join Date:
Jan 2008
Posts:
1
#1
Top 10 salaries
Jan 30 '08, 10:03 AM
hi I want to know about a Query regarding Top 10 salaries from Emp and I want 1 to 10 numbers at the Regarding salaries
I want Out put like 10000 1
7500 2
5500 3
3500 4
debasisdas
Recognized Expert
Expert
Join Date:
Dec 2006
Posts:
8119
#2
Jan 30 '08, 11:52 AM
try to use this
[code=oracle]
SELECT EMPNO,ENAME,SAL ,DENSE_RANK() OVER (ORDER BY SAL DESC) AS RK FROM EMP ORDER BY SAL DESC
[/code]
Comment
Post
Cancel
subashsavji
New Member
Join Date:
Jan 2008
Posts:
93
#3
Jan 30 '08, 12:11 PM
[code=oracle]
select rownum as rank ,ename,sal
from (select ename,sal from emp order by sal desc)
where rownum<=&n
//
SELECT min(sal)
FROM (SELECT sal
FROM emp
order by sal desc)
WHERE rownum<(&nth_he ighest+1);
//
select ename, sal
from (select ename,sal,dense _rank() over(order by sal desc) dr from emp)
where dr = &rnk
//
SELECT *
FROM (
SELECT empno, ename, sal,
RANK() OVER (ORDER BY sal DESC) EMPRANK
FROM emp)
//
[/code]
Last edited by
amitpatel66
;
Jan 30 '08, 01:17 PM
.
Reason:
code tags
Comment
Post
Cancel
amitpatel66
Recognized Expert
Top Contributor
Join Date:
Mar 2007
Posts:
2358
#4
Jan 31 '08, 10:31 AM
Originally posted by
Suneelhema
hi I want to know about a Query regarding Top 10 salaries from Emp and I want 1 to 10 numbers at the Regarding salaries
I want Out put like 10000 1
7500 2
5500 3
3500 4
[code=oracle]
SELECT salary, rn FROM
(SELECT empno,salary,ro wnum rn from emp ORDER BY salary desc) WHERE rn <= 10
[/code]
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment