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

To find second largest salary in Employee table

Answer Posted / v rajkumar

Select min(salary)FROM emp WHERE salary IN (SELECT distinct
TOP 2 salary FROM emp ORDER BY salary desc)
OR
Select top 1 salary from (select distinct top 2 salary from
emp order by salary desc) emp order by salary

OR
select max(salary) from emp where salary <(select max
(salary) from emp)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many types of cursor type are there?

1169


How to get a list all databases on the sql server?

1160


What is application role in sql server database security? : sql server security

1119


Why do we use sql limitations? Which constraints can we use while making a database in sql?

1130


Differentiate between mongodb vs. Sql server?

1142


What are the different sql server versions?

1034


Is it possible to call a stored procedure within a stored procedure?

1026


What is raid? : SQL Server Architecture

1232


How to create view in stored procedure sql server?

1057


What is purpose of normalization?

998


What are the types of lock supported by ?

1093


Write an sql query to find first weekday of the month?

978


What is star, snowflake and star flake schema? : sql server analysis services, ssas

1230


Give an example of SQL injection attack ?

1053


What is de-normalization in sql database administration? Give examples?

1027