how can find the second max sal for every group(i.e i want
group the data based on key and find the second max sal for
every group

Answers were Sorted based on User's Feedback



how can find the second max sal for every group(i.e i want group the data based on key and find th..

Answer / sudipta santra

select max(sal),group_nm from
( select sal,dense_rank over (order by sal desc) rank,group_nm
from emp )
where rank=&n
group by group_nm;


Note: here &n is the bind variable which holds value from
the user, based on the requirement either 2nd max or 3rd max
or 5th max.

Is This Answer Correct ?    2 Yes 1 No

how can find the second max sal for every group(i.e i want group the data based on key and find th..

Answer / nathan

SELECT *
FROM (SELECT deptno, sal,
DENSE_RANK () OVER (PARTITION BY deptno ORDER
BY sal DESC)

ranks
FROM emp)
WHERE ranks = 2;

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Oracle General Interview Questions

What suggestions do you have to reduce the network traffic?

0 Answers  


How to invoke the data pump export utility?

0 Answers  


"primary key=unique+null" is equal,reson?not,reason?

5 Answers  


find out the second highest salary?

55 Answers   Cognizant, Nucsoft, Oracle, TCS, Wondersoft,


What is Normalization ?

55 Answers   ACS, Genpact, Graphix Solution, IBM, Keane India Ltd, TCS, Vault,






What is oracle thin client?

0 Answers  


candidate key is subset of super key but not vice-verse explain

0 Answers  


How to declare a local variable?

0 Answers  


hello friends Im doing my final year engineering in B.Tech.. one of uncle said he can provide job in his company if im good in database management. but i have only basic knowledge about database, so like to join database management course in good intuition. so friends kindly help me to get good intuition because its my future.

0 Answers  


WHAT IS ecc 6.0

0 Answers  


Explain the use of Merge statement in oracle 11g

0 Answers   Infosys,


What happens to indexes if you drop a table?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)