Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / manjunath u
select salary from(select salary from emp order by salary
desc)where rownum<=5;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How many row comparison operators are used while working with a subquery?
What is a left join?
What is the unique index?
write an sql query to find names of employee start with 'a'? : Sql dba
how to get help information from the server? : Sql dba
How to read xml file in oracle pl sql?
What types of commands can be executed in sql*plus?
What is java sql package?
what is transaction? : Sql dba
What are the benefits of triggers?
Mention what pl/sql package consists of?
How consistent is the view of the data between and within multiple sessions, transactions or statements ?
Is it possible to update views?
How many postgresql users are there, worldwide?
What are the different types of triggers?