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 is the difference between an application and a program?
Name some changes done since version 3.0?
how to add list of items in a web application and win application?
what are constructors and destructors?
What is gui programming? : .NET Architecture
What are different types that a variable can be defined and their scopes ?
Explain the difference between primary & secondary storage device? : .NET Architecture
Can I create my own metadata attributes?
What is .net mobile input validation. : Microsoft dot net mobile
Explain about validation?
I can't be bothered with cas. Can I turn it off?
What is .net mobile utility controls. : Microsoft dot net mobile
what is tracing? Where it used?
Explain the number or character entered through keyboard gets converted to equivalent ascii code & it get stored on ram in the binary form.
How resource files are used in .net?