Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / manoranjan sethy
Method 01:
---------
Select Ename, MAX (Sal) From Emp
Group by ROWNUM, Ename
Having Rownum <=5;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you do multiple joins in sql?
Why trigger is used in sql?
What is cursor in pl sql with examples?
What is the difference between the conventional and direct path loader? : aql loader
Is sql harder than python?
How to write pl sql program in mysql command prompt?
What is an inconsistent dependency?
What is rowid in sql?
how would concatenate strings in mysql? : Sql dba
what is sp_pkeys? : Transact sql
What is offset and limit in sql?
Is sql the best database?
What is a column in a table?
what happens if null values are involved in expressions? : Sql dba
What is sql injection vulnerability?