how to retrieve the top 3 salaries of the table using rownum
Answer Posted / rameshwar gupta
select ename ,sal from (select ename,sal from emp order
by sal desc)
where rownum<4
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Can we use threading in pl/sql?
How can you view the errors encountered in a trigger?
What is the difference between drop and truncate commands?
What are the parameter modes supported by pl/sql?
How to change sql*plus system settings?
what are the differences between char and nchar? : Sql dba
explain about mysql and its features. : Sql dba
What is an exception in PL/SQL? What are the two types of exceptions?
How to test for null values?
which types of join is used in sql widely? : Sql dba
What is scalar function in sql?
How do I create a sql script?
What is the default isolation level in sql server? : Transact sql
What will you get by the cursor attribute sql%rowcount?
how do you control the max size of a heap table? : Sql dba