Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / amit bharane
select salary from employees
where rownum<=5
order by salary desc
| Is This Answer Correct ? | 3 Yes | 22 No |
Post New Answer View All Answers
What is sqlca in db2?
Is coalesce faster than isnull?
How does postgresql compare to oracle/db2/ms sql server/informix?
Is sql a programming?
Explain two easy sql optimizations.
Does sap use sql?
Explain the rollback statement?
Explain what is sql*plus?
What are tables in sql?
Is null operator in sql?
Which query operators in sql is used for pattern matching?
How do I count rows in sql query?
Can we edit a view in sql?
how would concatenate strings in mysql? : Sql dba
Explain sql data types?