Select the Nth lowest value from a table?

Answers were Sorted based on User's Feedback



Select the Nth lowest value from a table?..

Answer / mahesh

select *from(select ename,sal,row_number()over(order by sal desc) rk from emp) where rk=2;

Is This Answer Correct ?    1 Yes 0 No

Select the Nth lowest value from a table?..

Answer / nishi

select level, min('col_name') from my_table where level = '&n' connect by prior

('col_name') <'col_name') group by level;

Example:

Given a table called emp with the following columns:

-- id number

-- name varchar2(20)

-- sal number

--

-- For the second lowest salary:

-- select level, min(sal) from emp

-- where level=2

-- connect by prior sal < sal

-- group by lev

Is This Answer Correct ?    0 Yes 0 No

Select the Nth lowest value from a table?..

Answer / venkat

select * from emp minus select * from emp where rownum <= (select count(*) - &n from emp);

Is This Answer Correct ?    0 Yes 0 No

Select the Nth lowest value from a table?..

Answer / basanti

select * from(select rownum,ename from employee order by rownum desc) where rownum<=5;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

From the database level, how can you tell under which time zone a database is operating?

1 Answers  


What is a database schema in oracle?

0 Answers  


23. Display the client name for all clients who have placed an order where any order line has more than 3 items. Do not use a table join anywhere in your query.

3 Answers   Wipro,


What is a static data dictionary in oracle?

0 Answers  


what is mean by prmary key and foreign key and how can we diffrentiate that? Please answer me. Advance thanks.

9 Answers   BPO, Excel, Wipro,






why dont we assign not null constraint as table level constraint.

0 Answers  


What is an oracle user role?

0 Answers  


What privilege is needed for a user to create indexes in oracle?

0 Answers  


What is a shared pool?

1 Answers  


Please explain oracle left join with an example?

0 Answers  


What is oracle and what are its different editions?

0 Answers  


primary key is foreign key for the same table?

2 Answers   Oracle,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)