how to retrieve the top 3 salaries of the table using rownum
Answer Posted / akki julak
select sal from (select rownum,sal from emp order by sal
desc)
where rownum<4;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the the update statement in sql?
what is datawarehouse? : Sql dba
Why is %isopen always false for an implicit cursor?
How to pipe multiline string to isql?
How many types of literals are available in pl sql?
What is crud diagram?
tell me about various levels of constraint. : Sql dba
What do you mean by rowid?
What is lookup table in sql?
What is sql partition function?
What are triggers and its uses?
What is a unique key?
What is native sql query?
Which are the different case manipulation functions in sql?
How do you create an update query?