How to find only %th Highest Sal
Answer Posted / ajit
select e.*, rn
from ( select empno, ename, sal, deptno, dense_rank() over ( order by sal desc ) rn
from emp) e
where rn = & rn;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is sqlite good enough for production?
Why is pl sql needed?
Define overloaded procedure?
What is dynamic query?
What is the difference between stored procedure and view?
Is sql database free?
What is a memo field?
What are sql functions? Describe in brief different types of sql functions?
Why functions are used in sql?
How do I start sql profiler?
what are the differences between char and nchar? : Sql dba
how to use like conditions? : Sql dba
What is join view in sql?
Explain character-manipulation functions?
Why use triggers in sql?