how to findout the 100th maximum salary

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


Please Help Members By Posting Answers For Below Questions

What are commit, rollback, and savepoint?

738


Why we use sql profiler?

722


how can we repair a mysql table? : Sql dba

705


What do you understand by exception handling in pl/sql?

760


Do ddl statements need commit?

725






define sql update statement ? : Sql dba

807


What action do you have to perform before retrieving data from the next result set of a stored procedure ?

2297


Which are the different character-manipulation functions in sql?

719


Why is sql important?

761


How do you exit in sql?

815


Can we rollback delete command?

693


Does oracle roll back the transaction on an error?

743


What is sqlca in powerbuilder?

746


what is the difference difference between procedure and packages

9650


Why stored procedure is better than query?

690