Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Explain oracle insert into command?

0 Answers  


How many memory layers are in the oracle shared pool?

0 Answers  


What is the difference between substr and instr?

0 Answers  


Can you tell me how to add new column in existing views?how?How is possible?

0 Answers   FIS,


Please explain oracle data types with examples?

0 Answers  


How can you merge two tables in oracle?

0 Answers  


What happens to the current transaction if the session is ended?

0 Answers  


How to get a list of all user accounts in the database?

0 Answers  


State the difference along with examples between Oracle 9i, Oracle 10g and Oracle 11i.

0 Answers   Atos Origin,


How to create lov dynamically at runtime & attach to text field?

0 Answers  


What are the ways tablespaces can be managed and how do they differ?

0 Answers  


i can create a view with two columns from emp table,, later i need to add one more emp column to existing view.. what is query similarly add one more column to existing primary key constraint.. please give me the solutions

4 Answers   CGI,


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • 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)