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
Explain sql data types?
what is a trigger? : Sql dba
what is sql in mysql? : Sql dba
How do you update sql?
What are the types of join and explain each?
What is pl sql record in oracle?
What is meaning of <> in sql?
How to test for null values?
What is the use of function in sql?
What are all the different normalization?
Which constraints we can use while creating database in sql?
Why we use stored procedure instead of query?
Can a varchar be a primary key?
Are left and right joins the same?
What is the importance of sqlcode and sqlerrm?