how to retrieve the top 3 salaries of the table using rownum
Answer Posted / debanjan rudra
select sal from (select sal from emp order by val desc)
where rownum < 4;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the use of non clustered index?
What is sql and also describe types of sql statements?
What is pls integer?
Which command is used to delete a package?
How do you explain an index number?
What is sqlcommand?
Why stored procedure is faster than query?
Is sql workbench free?
How do I create a sql script?
Can primary key be changed?
What are the two characteristics of a primary key?
How sql query is executed?
What is Materialized View? In What Scenario we Use Materialized View?
Why is stored procedure faster than query?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba