how to retrieve the top 3 salaries of the table using rownum
Answer Posted / chandrasekar.ramasamy
select sal from( select rownum,e.* from empmaster e order
by sal desc) where rownum < 4
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
What are its different types of dbms?
how to install mysql? : Sql dba
what are numeric data types? : Sql dba
What are different types of statements supported by sql?
Is it possible to create startup or shutdown trigger for on-schema?
Explain normalization and what are the advantages of it?
Does inner join return duplicate rows?
Explain table and field in sql?
What is materialized view in sql?
Which is faster count (*) or count 1?
Is keyword pl sql?
What is mutating sql table?
how are mysql timestamps seen to a user? : Sql dba
how many sql dml commands are supported by 'mysql'? : Sql dba
How can I tell if sql is running?