1.how to extract the second highest salary from emp table
having sal as a column which contains the salary of all
employee of an organisation.

Answers were Sorted based on User's Feedback



1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / ramya

select max(sal) from employees where
sal < (select max(sal) from employees)

Is This Answer Correct ?    21 Yes 2 No

1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / neha k

select sal
from (SELECT sal, rownum row_num
FROM emp
order by sal desc)
where row_num = 2;

Is This Answer Correct ?    5 Yes 1 No

1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / hema

Select sal from emp a where 2=(select count(distinct sal)
from emp b where a.sal <= b.sal)

Is This Answer Correct ?    2 Yes 2 No

1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / esakkiraja

select a.* from(select dense_rank() over(order by sal)as
new_rank from emp) a where new_rank=2

Is This Answer Correct ?    0 Yes 1 No

1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / swapna

select top(2) sal from emp where sal order by desc

Is This Answer Correct ?    0 Yes 4 No

1.how to extract the second highest salary from emp table having sal as a column which contains the..

Answer / swapna

select top(1) sal From sample
where sal
in (select top(2) salfrom sample order by saldesc)
order by sal asc

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More Oracle General Interview Questions

What privilege is needed for a user to query tables in another schema?

0 Answers  


What happens to indexes if you drop a table?

0 Answers  


How can we find out the current date and time in oracle?

0 Answers  


What are cursor?where are they used?

2 Answers  


Does oracle charge for java?

0 Answers  






What is the implicit cursor in oracle?

0 Answers  


what is foreign key?

5 Answers  


How to commit the current transaction in oracle?

0 Answers  


How to revoke create session privilege from a user in oracle?

0 Answers  


How do I start tns listener?

0 Answers  


T1: T2 A X--- this is updated record B B like this T1 table having no.of records updated. write a query"retrive updated record from T2"

2 Answers   Cognizant,


What is an Extent ?

3 Answers  


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)