Answer Posted / lince
select sal from
(
select row_number() over (order by sal desc) as rno,sal
from Emp
)T
where T.rno=100
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
how can we know the count/number of elements of an array? : Sql dba
What are literals in sql server?
what is the difference between a local and a global temporary table? : Sql dba
What is sql query optimization?
What is error ora-01000: maximum open cursors exceeded
What does the argument [or replace] do?
what is the difference between group by and order by in sql? : Sql dba
Explain what is sql?
What is primary key and unique key?
Can we use loop in sql?
What is the use of sql trace?
Enlist some predefined exceptions?
What is the size of partition table?
what is subquery? : Sql dba