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

I Have Employee table having column name as ID,SALARY
how to get second max salary from employee table with id
ex
ID SALARY
1 20000
7 37000
2 5000

Answer Posted / deepa

drop table #temp
select top 2 identity(int,1,1) as SlNo, *
into #temp from employee order by salary desc
select * from #temp where SlNo = 2

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the hotfixes and patches in sql server?

1066


How to find the source of a table in sql server?

1039


how would you write a sql query to compute a frequency table of a certain attribute involving two joins? What changes would you need to make if you want to order by or group by some attribute? What would you do to account for nulls?

1691


Tell me what are the advantages of using stored procedures?

1064


What are the recovery models for a database?

1149


How to create nested stored procedure?

1075


What is the process of normalising?

1049


Detail about the hardware which is supported by SQL server?

1122


What is SQL Azure Federations?

114


What is unique key constraint?

1118


Differentiate between SQL and ORACLE joins and write their syntax.

1075


What is the difference between a fill factor of 100 and 0?

1032


Tell me about the approaches which you used to counter the DI problems.

1428


Will sql server 2005 allow you to reduce the size of a column?

1058


What is database replication? What are the different types of replication you can set up in sql server?

1017