how to retrieve the top 3 salaries of the table using rownum
Answers were Sorted based on User's Feedback
Answer / seema
select sal from (select distinct sal from emp order by sal
desc ) where rownum < 3;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kavitha
select employee_id,last_name,salary
from employees
where rownum <=3
order by salary desc
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / kamal
Hello Sir
I wana to see this that how to retrieve 3 top salary by
subqurey can you gave me this answer.
Thanks
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saisravanthi
select salary from
(select salary,rownum from salary_tab
order by salary_tab desc)
where rownum < 4;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manoj tcs
select * from (select * from emp order by sal desc)
where rownum < 4;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raveendran
SELECT EMP_BASICS,ROWNUM FROM EMPLOYEE_MASTER WHERE
EMP_BASICS IS NOT NULL AND ROWNUM<=3 ORDER BY EMP_BASICS
DESC
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / k.thrilok kumar
select rownum, sal from (select * from emp order by sal
desc) where rownum<=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajnish chauhan
you can put any number on Rnk.
---Top 3 salary
SELECT ROWNUM,ename,sal
FROM (
SELECT ename,sal,rank() over(ORDER BY sal DESC)rnk
FROM emp)a WHERE rnk<4
-----Top 3 Salary only
SELECT ROWNUM,ename,sal
FROM (
SELECT ename,sal,rank() over(ORDER BY sal DESC)rnk
FROM emp)a WHERE rnk=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / debbie
select * from (select sal from emp order by sal desc)
where rownum<=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chiru
select sal from (select distinct sal from emp order
by sal desc)
where rownum<4 ;
| Is This Answer Correct ? | 0 Yes | 0 No |
wirte a query to filter improper date format follwing table? date 20-apr 22-may-2010 26-jun-2010 feb-2009 i want the output date 22-may-2010 26-jun-2010
How do you sort in sql?
Can we use threading in pl/sql?
What is sql entity?
how to create object in plsql
what is offset-fetch filter in tsql? : Transact sql
What is multiple columns?
Explain Connect by Prior?
What is Collation Sensitivity ? What are the various type ?
what is the Default Libraries for Oracle Report 6i
what is difference between decode and case function?
What are the different dml commands in sql?
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)