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 find the 2nd higgest salary in the column for example
take table name is employee?
And also find bottom 2nd lowest salary ?

Answer Posted / prasoon madnawat

i forgot order by in da last post
SQL Server:
Select MIN(Salery) from (SELECT TOP 2 * from EMPLOYEE order
by Salery DESC)

Oracle:
Select MIN(Salery) from (SELECT * from EMPLOYEE where ROWNUM
<3 order by Salery DESC)

MySQL
Select MIN(Salery) from (SELECT * from EMPLOYEE order by
Salery DESC LIMIT 2)

likewise for 2nd minimum salery.

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to set the startup position of the form?

2004


What is the mesi? : .NET Architecture

1073


Explain dotnet framework ?

1110


Explain about developer benefit from memory management?

1003


What is IL code, CLR, CTS, GAC & GC?

1085


What is difference between .net and visual studio?

1025


Explain the five stages in a dlx pipeline? : .NET Architecture

964


What is .net mobile input validation. Explain with an example? : Microsoft dot net mobile

1002


Define a virtual memory? : Dot net architecture

956


what are login controls?

1933


where should I put this information then?

1024


What is an interrupt? : Dot net architecture

1018


What is .net mobile forms? : Microsoft dot net mobile

970


any one can explain about projectarchitecture and project approach briefly

2564


How can we integrate atlas with web services?

998