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 we update views in sql?
How to fetch alternate records from a table?
what is innodb? : Sql dba
How to return an array from java to pl/sql?
What if we write return in procedure?
Is mariadb a nosql database?
What is pl/sql language case sensitive?
Can a key be both primary and foreign?
What is raw datatype in sql?
Write a sql query to convert all character to uppercase after hypen.
What are different joins used in sql?
What is spool?
what is 'mysqlcheck'? : Sql dba
What is primary key secondary key alternate key candidate key?
How do I truncate a word?