Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / ram
select ename,salary from(select ename,salary from emp order by salary desc) where rownumber<6
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the maximum number of rows in sql table?
Is oracle sql free?
Which sql statement is used to return only different values?
What does the hierarchical profiler does?
What is crud stand for?
explain the difference between bool, tinyint and bit. : Sql dba
Why trigger is used in sql?
Which query operators in sql is used for pattern matching?
What is the difference between alter trigger and drop trigger statements?
Is the primary key an index?
How do you delete data from a table?
What are the different type of joins in sql?
What does the base_object_type column shows in the user.triggers data dictionary view?
how to convert numeric values to character strings? : Sql dba
Does asenumerable execute the query?