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...


how to check the 3rd max salary from an employee table?

Answers were Sorted based on User's Feedback



how to check the 3rd max salary from an employee table?..

Answer / manish_patil

select sal from emp_sal where rownum = 3 order by sal desc

Is This Answer Correct ?    6 Yes 9 No

how to check the 3rd max salary from an employee table?..

Answer / tushar

select max(sal) from ( select sal from emp group by sal order by sal) where rownum<4;

Is This Answer Correct ?    0 Yes 3 No

how to check the 3rd max salary from an employee table?..

Answer / nagendra

select min(sal) from emp where sal in( select top 3 sal
from emp order by sal desc)

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More SQL PLSQL Interview Questions

How is debugging done?

0 Answers  


What is sql keyword?

0 Answers  


How many levels can subqueries be nested in a FROM clause?

7 Answers  


what is the difference between truncate and drop statements? : Sql dba

0 Answers  


Write a query to display the current date in sql?

0 Answers  


what is the difference between sql and t-sql? : Transact sql

0 Answers  


What are the parameter modes supported by pl/sql?

0 Answers  


Is it possible to access the current value in a session before accessing next value?

1 Answers  


How many types of literals are available in pl sql?

0 Answers  


check whether all the emp numbers are indeed unique.

6 Answers  


Explain the difference between sql and mysql.

0 Answers  


How is sql used in oracle?

0 Answers  


Categories