Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / seetharam
select * from(select * from emp order by sal desc) where
rownum<=5;
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is the starting oracle error number?
Is a view faster than a stored procedure?
What is set serveroutput on in pl sql?
Difference between global and parameter variables?
Write the command to remove all players named sachin from the players table.
Write a sql query to find the names of employees that begin with ‘a’?
where are cookies actually stored on the hard disk? : Sql dba
Is left join and outer join same?
when is the use of update_statistics command? : Sql dba
What is primary key and foreign key with example?
what are the advantages of sql ? : Sql dba
What is dense_rank?
What are different types of keys?
What is sql table?
What is pivot query?