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


There is a 5000 EMP in company.how we find out the 5th
highest getting salary employee outof 5000 employes........

Answers were Sorted based on User's Feedback



There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / nagireddy

select max(sal) from emp a where 5=(select count(distinct sal)
from emp b where a.sal<=b.sal);

Is This Answer Correct ?    13 Yes 3 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / kasyapa

select * from emp A where 4 = (select count(*) from emp B
where A.sal<B.sal)

Is This Answer Correct ?    6 Yes 2 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / satish kalynm

SELECT * FROM T999 WHERE SAL<(SELECT MAX(SAL) FROM T999
WHERE SAL<(SELECT MAX(SAL) FROM T999 WHERE SAL<(SELECT
MAX(SAL) FROM T999 WHERE SAL<(SELECT MAX(SAL) FROM T999))));

Is This Answer Correct ?    5 Yes 2 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / rajib

select max(salary) from staff where salary not in(select
salary from staff order by salary desc fetch first 4 rows
only)

Is This Answer Correct ?    3 Yes 0 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / payel

SELECT * FROM STAFF AA
WHERE 5 = (SELECT COUNT (SALARY) FROM STAFF WHERE SALARY
<= AA.SALARY );

Is This Answer Correct ?    3 Yes 1 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / ashok

in above answers what is a.sal and b.sal please explain me

Is This Answer Correct ?    0 Yes 0 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / abhusha

SELECT SAL FROM EMP A
WHERE 5 = (SELECT COUNT(*) FROM EMP B
WHERE B.SAL >= A.SAL)

Is This Answer Correct ?    0 Yes 0 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / sachin

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

Is This Answer Correct ?    0 Yes 1 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / pavan

try this one....


select * from emp where emp_Id = (select emp_Id from emp
order by sal)
and count(*) < 6;

Is This Answer Correct ?    0 Yes 5 No

There is a 5000 EMP in company.how we find out the 5th highest getting salary employee outof 5000 ..

Answer / udhay

SELECT MAX(salary)
FROM employees
WHERE salary
NOT IN (SELECT TOP 4 salary FROM employees ORDER BY salary
DESC)

Is This Answer Correct ?    1 Yes 7 No

Post New Answer

More DB2 Interview Questions

How do you check for a null value in a db2 column?

2 Answers  


I have a DB2 table which has 1000 rows.after udatingg first 110 rows, my job abends. Now what I have to do if I want to restart the job next time so that it should start updating from 111th row (without updating first 110 rows again).

10 Answers   Cap Gemini, Wipro,


What is SPUFI?

4 Answers  


i have cobol+ db2 program but it contains n number of subprograms for this how many dbrm members i need to mention in bind process

2 Answers  


How do you leave the cursor open after issuing a COMMIT? (for DB2 2.3 or above only)

2 Answers  


If I have a view which is a join of two or more tables, can this view be updateable?

0 Answers  


what is the difference between join and union?

4 Answers   IBM,


What is null value in db2?

0 Answers  


what is SMP/E? and what are the major steps of it? thanks...

1 Answers   IBM,


what is cursor stability?

2 Answers   IBM,


I have a table(product),It contain fields(productname,cost). I want to retrieve the product name ,which cost is second maximum in the table?

10 Answers   Fidelity,


What is Declaration Generator(DCLGEN)?

1 Answers  


Categories