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 schema in sql example?
What normalization means?
how to decrement dates by 1 in mysql? : Sql dba
What is exit statement?
Why do we use procedures in pl sql?
What is foreign key sql?
Why cannot I use bind variables in ddl/scl statements in dynamic sql?
What does stand for in sql?
How do sql databases work?
what tools available for managing mysql server? : Sql dba
What is attribute indicator in pl sql?
Is left join same as join?
what is the functionality of the function htmlentities? : Sql dba
Explain cursor types?
What is an oracle stored procedure?