how to find the 2nd higgest salary in the column for example
take table name is employee?
And also find bottom 2nd lowest salary ?
Answer Posted / vishnu
Here we can find out 2nd highest salary in many ways,
according to the situation we can select anyone…
1st Type:
select min(esal) from emp where esal in (select top 2 esal
from emp order by esal desc)
2nd Type:
select max(esal) from emp where esal not in(select max(esal)
from emp)
3rd Type:
select max(esal) from emp where esal <(select max(esal) from
emp )
4th Type:
select Max(esal) from EMP a where 2=(select
COUNT(distinct(esal)) from EMP b where a.eSAL<=b.eSAL);
-----------------------------------------
For 2nd Lowest Salary:
-- 1st Type:
select min(esal) from emp where esal > (select min(esal)
from emp)
-- 2nd Type:
select * from emp where esal =
(
select max(esal) from emp where esal in (select top 2 esal
from emp order by esal)
)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the new features of .net 2.0?
What is the difference between primary & secondary storage device? : Dot net architecture
How resource files are used in .net?
Differnce between managed code and unmanaged code ?
Difference between throw exception and rethrowing ?
What are the important principles of soa (service oriented architecture)?
Explain the difference between primary & secondary storage device? : Dot net architecture
What is a service class?
deference between display and visibility property of CSS
6. Wcf- what is SOA
What are different types that a variable can be defined and their scopes ?
Explain about code access security?
how to set the startup position of the form?
what is the difference between running an application with and without debugger?
How can I create a application?