how to retrieve the top 3 salaries of the table using rownum
Answer Posted / k.thrilok kumar
select rownum, sal from (select * from emp order by sal
desc) where rownum<=3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which constraints we can use while creating database in sql?
how to enter numeric values as hex numbers? : Sql dba
What is indexing in sql and its types?
What do you mean by stored procedures? How do we use it?
Can we rollback after truncate?
What is Materialized View? In What Scenario we Use Materialized View?
Explain the working of foreign key?
Is and as keyword in pl sql?
What is sql entity?
Is mariadb a nosql database?
What are the different set operators available in sql?
What is not null in sql?
what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql
how to use like conditions? : Sql dba
What is t sql in sql server?