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 / radhakrishnan vaithilingam

SELECT TOP 1 id.salary
FROM (SELECT TOP 2 id,salary
FROM employee
ORDER BY salary DESC )a
ORDER BY a.salary ASC

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the new features introduced in SQL Server 2000 (or the latest release of SQL Server at the time of your interview)? What changed between the previous version of SQL Server and the current version?

1141


What is outer join in sql server joins?

1191


What is mssql?

1035


List layers of abstraction microsoft architectured to provide relational db through cloud platform ?

187


what is the system function to get current user's user id? : Sql server database administration

1052


What do you understand by a stored procedure?

1158


Explain about sql server login?

1140


What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?

1064


What you can do to delete a table without the delete trigger firing?

1017


Other than truncate statement, which other command can by-pass the trigger on the tables?

1198


What is t-sql script to take database offline – take database online.

1142


Describe how to use linked server?

1084


what's the information that can be stored inside a bit column? : Sql server database administration

1093


You are creating an application where users are asked their gender in the gender combo box you have three options: ‘male’ , ‘female’ and ‘i choose not to disclose’ these options are stored in the table as 1, 0 or null which datatype should you use?

1056


Do you know what is sql service broker?

1169