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
What is a ddl command?
What is example of database?
Can we change the table name in sql?
What are predefined functions in sql?
What are different types of tables in sql?
What are instead of triggers?
How do I delete a trigger?
what tools available for managing mysql server? : Sql dba
what is bcp? When is it used?
Does a user_objects view have an entry for a trigger?
What is cursor and why it is required?
does sql support programming? : Sql dba
how to use myisamchk to check or repair myisam tables? : Sql dba
What is the difference between alter trigger and drop trigger statements?
Which are the different types of indexes in sql?