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

Answers were Sorted based on User's Feedback



To find second largest salary in Employee table..

Answer / anu

Select max(Sal) from emp
Where
Sal
<
(Select max(Sal) from emp);

Is This Answer Correct ?    0 Yes 0 No

To find second largest salary in Employee table..

Answer / sujith

select empname,salary from(
select empname,salary, rank() over( order by salary desc) ss from emp)
where ss=2;

Is This Answer Correct ?    3 Yes 4 No

To find second largest salary in Employee table..

Answer / ela tiku

Select Max(SAL) FROM emp WHERE sal<(SELECT MAX(SAL) FROM
emp)


<<<assuming sal is the column name and emp is the table
name>>>

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / kuduba.r

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

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / anjum

SELECT MAX(SALARY)FROM EMP WHERE SALARY(SELECT MAX(SALARY)
FROM EMP)

Is This Answer Correct ?    0 Yes 1 No

To find second largest salary in Employee table..

Answer / murugesh

select * from (select row_number over( order by salary
desc) as salcount,empid,salary from employee) emp
where emp.salcount = 2

Is This Answer Correct ?    1 Yes 2 No

To find second largest salary in Employee table..

Answer / chitharthan

select max(salary)-1 from employeetable

Is This Answer Correct ?    0 Yes 10 No

Post New Answer

More SQL Server Interview Questions

How do you fine the performance tunning?

2 Answers   Accenture,


What are the different types of subquery?

0 Answers  


What do you understand by hotfixes and patches in sql server?

0 Answers  


What are the advantages of log shipping?

0 Answers  


What does truncate do?

0 Answers  


How many types of schemas are there?

0 Answers  


Which are the olap features?

0 Answers  


It is important form e to get the information from log files of applications executed by the task scheduler? Does sql studio save these log files? : sql server management studio

0 Answers  


how to get the automatic backup of the database in the sql server

4 Answers  


write sql program to get the detail of student in a class?

2 Answers  


What is the difference between varchar and nvarchar types?

1 Answers  


How can we Use Linked Server? Uses of Linked server

1 Answers   IBM,


Categories