how to retrieve the top 3 salaries of the table using rownum
Answer Posted / debbie
select * from (select sal from emp order by sal desc)
where rownum<=3
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does (+) mean in sql joins?
How many subqueries can be nested in a statement?
How do you remove duplicates without using distinct in sql?
Is oracel sql developer written in java?
Can a select statement fire a trigger?
List out the acid properties and explain?
What is left join in postgresql?
what is schema? : Sql dba
What is the difference between a procedure and a function?
Are null values same as that of zero or a blank space?
What is the difference among union, minus and intersect?
What sql database should I use?
What is basic structure of pl sql?
what is an alias command? : Sql dba
how to drop an existing index in mysql? : Sql dba