Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / kishore
select salery from (select salery from
emp order by salery desc) where rownum <=5 ;
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is sql architecture?
What schema means?
What is rowid in sql?
How do you create a db file?
Why do we use subquery?
What is the difference between a procedure and a function?
What will you get by the cursor attribute sql%rowcount?
What is data manipulation language?
what is a constraint? : Sql dba
Is join an inner join?
What are database links used for?
what is “go” in t-sql? : Transact sql
What do you know by pl/sql cursors?
What is string join?
How do I view a table in sql?