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


How to get employee name from employee table which is the
fiveth highest salary of the table

Answers were Sorted based on User's Feedback



How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / a g srikanth

Dear Shiv Shankar
There is a small mistake in your query

Select Salary From Employee a Where 5=(
Select Count(Distinct Salary) From Employee b
Where a.Salary <= b.Salary )

the correct one should be

Select Salary From Employee a Where 5=(
Select Count(Distinct Salary) From Employee b
Where a.Salary >= b.Salary )

please check it...

Is This Answer Correct ?    1 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / praveen

SELECT TOP 1 salary
FROM
(
select TOP 5 salary
FROM
employee
ORDER BY
salary DESC
) A
ORDER BY
salary

Is This Answer Correct ?    1 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / raghuvir

select * from employee where salary = (
select min(salary) from (
select distinct(salary) from employee
order by salary desc)
where rownum <=5)

Is This Answer Correct ?    1 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / ramu

select employee_name,salary from employee order by salary desc limit 1 offset 4;

Is This Answer Correct ?    1 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / vijay

select min(salary) from (select rownum r,e.* from employees e order by salary desc) where rownum<=5;

Is This Answer Correct ?    0 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / mrunali

select name from (select e.*, dense_rank() over (order by salary desc nulls last)as rn from emp e) where rn=5

Is This Answer Correct ?    0 Yes 0 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / raju t.t

select firt_name, salary from employees a where 5=(select
count(distinct salary from employees b where a.salary
<=b.salary);

Is This Answer Correct ?    6 Yes 7 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / anil alpati

SELECT employee_name FROM employee order by salary desc limit 1 offset 5 ;

Is This Answer Correct ?    0 Yes 1 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / anil alpati

Select empsal From emp order by empsal desc offset 5 limit 1;

Is This Answer Correct ?    0 Yes 3 No

How to get employee name from employee table which is the fiveth highest salary of the table..

Answer / shivashanker

Anybody knows the answer

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More SQL PLSQL Interview Questions

SQL Tuning, Oracle Server 10g: Why is the following hint invalid? SELECT /*+ first_rows parallel(table_name,paral_number)*/

1 Answers   Accenture,


What does where 1 1 mean in sql?

0 Answers  


What are the types of operators available in sql?

0 Answers  


Difference between global and parameter variables?

0 Answers   TCS,


Explain what is a view?

0 Answers  


What is record in pl sql?

0 Answers  


How to convert comma separated string to array in pl/sql?

0 Answers  


What is write ahead logging in sql server?

0 Answers  


What is the difference between rename and alias?

0 Answers  


How does sql store data?

0 Answers  


what is the use of set statement in tsql? : Transact sql

0 Answers  


Name some usages of database trigger?

0 Answers  


Categories