Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / yogesh sharma
SELECT ENAME,SALARY FROM (SELECT ENAME,SAL FROM EMP ORDER BY SALARY DESC ) WHERE ROWNUM<6;
| Is This Answer Correct ? | 77 Yes | 13 No |
Post New Answer View All Answers
What are pl sql data types?
What are all the different normalization?
tell me about various levels of constraint. : Sql dba
What are the subsets of sql?
What is clustered index in sql?
What is sql*loader and what is it used for?
What are the different dcl commands in sql?
what is a trigger? : Sql dba
Is oracel sql developer written in java?
What are the disadvantages of not performing database normalization?
What is the purpose of primary key?
How to get help at the sql prompt?
What is sql query limit?
How to run sql statements with oracle sql developer?
How can we implement rollback or commit statement in a trigger?