how to retrieve the top 3 salaries of the table using rownum
Answer Posted / kavitha
select employee_id,last_name,salary
from employees
where rownum <=3
order by salary desc
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is sql analyzer?
What do you understand by exception handling in pl/sql?
What is range partitioning?
What are the sql commands?
Which are the different case manipulation functions in sql?
How to run pl sql program in mysql?
What schema means?
Can there be more than one function with a similar name in a pl/sql block?
what is msql? : Sql dba
Why do we use joins?
Define commit?
What are basic techniques of indexing?
How to run sql statements through the web interface?
What is pl sql quora?
What is out parameter used for eventhough return statement can also be used in pl/sql?