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

from the table display the 2nd highest salary?
and also the least 2nd salay?

Answer Posted / prasanthi

Query for Getting 2nd least salary (replace 2 with any
number so that you will get any least salary:

select max(Salary) from Employee
where Salary in
(select distinct top 2 Salary from dbo.Employee order by
Salary asc)

Query for Getting 2nd Height salary (replace 2 with any
number so that you will get any least salary:

select min(Salary) from Employee
where Salary in
(select distinct top 2 Salary from dbo.Employee order by
Employee desc)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference between views and tables?

1078


What is co-related sub query?

1076


How to create indexed view?

1109


What is 2nf normalization?

1090


what are the new features introduced in sql server 2000? : Sql server database administration

980


How to execute a sql statement using odbc_exec()?

1221


What is difference between order by and group by?

1057


What is difference between getdate and sysdatetime in sql server 2008?

1099


What is a covering index?

1044


What do you understand by user-defined function in the sql server and explain the steps to create and execute a user-defined function in the sql server?

1024


on line cluster can we make if yes tell me the procedure

2068


How exceptions can be handled in sql server programming?

1077


How much memory that we are using in Logshipping Concept?

1845


What is a transact-sql statement?

1131


Why I am getting this error when renaming a database in ms sql server?

1111