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 is partitioned table in Oracle?

0 Answers   MCN Solutions,


What is the exact use of Collections?

0 Answers  


How to select some rows from a table in oracle?

0 Answers  


What are the attributes that are found in a cursor?

0 Answers  


14. Display the item_cost and then round it to the nearest hundred, ten, unit, tenth and hundredth

1 Answers   Wipro,






What is the Difference between 1) ER MODEL and Relational Model 2) Dense Index and Sparse Index

1 Answers  


how to store only time in a data base table

2 Answers  


What is oracle rownum?

0 Answers  


What is a schema in oracle?

0 Answers  


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

0 Answers  


What are the ansi data types supported in oracle?

0 Answers  


How to use "for" statements in oracle?

0 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)