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
What is a common use of group by in sql?
What is information schema in sql?
What is lookup table in sql?
What is a column in a table?
Can sql developer connect to db2?
What is the difference between row level and statement level trigger?
what is acid property in database? : Sql dba
Define commit, rollback and savepoint?
what is a record in a database ? : Sql dba
What is sql performance tuning?
Explain scalar functions in sql?
What is union?
What are sql*plus environment variables?
What if we write return in procedure?
How to run sql statements with oracle sql developer?