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


find the third highest salary?

Answers were Sorted based on User's Feedback



find the third highest salary?..

Answer / justin

SELECT sal FROM empORDER BY sal DESC LIMIT 2 , 1

Is This Answer Correct ?    0 Yes 2 No

find the third highest salary?..

Answer / purushotham

select level,max(sal)
from table
where level=3
connect by prior sal>sal
group by level

Is This Answer Correct ?    0 Yes 6 No

find the third highest salary?..

Answer / mousumi dalai

select min(sal) from emp where sal in
(select sal from emp order by sal desc where ROWCOUNT <=3) ;

Is This Answer Correct ?    9 Yes 36 No

Post New Answer

More SQL PLSQL Interview Questions

What is normalization in a database?

0 Answers  


Explain how to use transactions efficiently : transact sql

0 Answers  


What is native sql query?

0 Answers  


What are different types of refreshment techniques of materialised view

2 Answers  


Is sql a microsoft product?

0 Answers  


What is a sql schema used for?

0 Answers  


What is compiled query?

0 Answers  


What are different clauses used in sql?

0 Answers  


What is the difference between the conventional and direct path loader? : aql loader

0 Answers  


Can we insert delete data in view?

0 Answers  


How do I run a sql query?

0 Answers  


Are subqueries better than joins?

0 Answers  


Categories