find out the third highest salary?
Answers were Sorted based on User's Feedback
Answer / shivaprasad
Hi Every one,this query will helps you to find 1st or 2nd or
3rd or and so on salary from the employee table.
change inside distinct top (3) for respective results
select distinct top 1 Salary from(select distinct top 3
Salary from Employee order by Salary DESC)temp order by
Salary;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / narendra
select max(company_id) from company where company_id <
(select max(company_id) from company where company_id <
(select max(company_id) from company))
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sabapathi
select sal from employee
where sal=(select min(sal) from employee
where sal>(select min(sal) from employee
where sal>(select min(sal) from employee)))
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mohd. rashid
SELECT TOP 1 salary
FROM(
SELECT DISTINCT TOP 3 salary
FROM employee
ORDER BY salary DESC)
ORDER BY salary
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravindra
select max(sal) from emp where sal < (select max(sal) from emp where sal < (select max(sal) from emp));
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / santhoshkumar
select name,salary from emp where salary=(select min(sal)
from (select distinct TOP 3(salary) from emp order by
salary desc;
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / ram pravesh
select max(sal) from emp where sal<(select max(sal)from emp
where sal<(select max(sal) from emp))
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / pardeep kumar
This is the Simplest One
Let i have a Column named EmpSal in Tbale Named tbEmp
Select Min(EmpSal) from tbEmp where EmpSal IN(Select
Distinct Top 3 EmpSal from tbEmp ORDER BY EmpSal DESC)
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ashok naik
In Sql server:
Select top 1 ThirdHighest.salary from(
Select distinct top 3 salary from employee order by salary
desc) as ThirdHighest
--example for 4th highest salary in above query put 4
inplace of 3
--example for 5th highest salary in above query put 5
inplace of 3
--and so on for nth highest
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / harikrishna ravipati
select max(sal) from emp where sal <
(select max(sal) from emp where sal <
(select max(sal) from emp))
| Is This Answer Correct ? | 0 Yes | 0 No |
Can we create more than one constraint to column ?
How do I know if oracle is installed on windows?
what is Materialized view? What is a snapshot? what are the similarities and differences between Materialized views and snapshots?
Can the default values be assigned to actual parameters?
What is an oracle cursor variable?
how to find find & delete duplicate rows from two different tables?
How to convert the date format from dd/mm/yyyy to mm/dd/yyyy. (for eg). 22/05/2008 to 05/22/2008. when u use to_char(), it tells the month is invalid. how to resolve this problem.tel with eg.
Explain the difference between a procedure and a function? What do you understand by those terms?
what are corelated subqueries
Can we call procedure inside function in oracle?
What is the difference between pre-select and pre-query?
What is the sql query to concatenate column values from multiple rows in oracle?