adspace
Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / vishnu
select level,max(sal) from emp
where level<=5
group by level
connect by prior sal>sal
order by level Asc;
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is the best sql course?
how many tables will create when we create table, what are they? : Sql dba
what is sql server agent? : Sql dba
what is collation? : Sql dba
What is the current version of sql?
how to start mysql server? : Sql dba
what are the advantages of sql ? : Sql dba
how to use regular expression in pattern match conditions? : Sql dba
what are aggregate and scalar functions? : Sql dba
Hi am new to PLSQL & facing problems in writing code like in SP, Functions, so any one having some SP coding with in depth explanation please share with me my Email ID suvarnaatsuvarna@rediffmail.com Or taking tanning on this please do contact me
what is schema? : Sql dba
If a cursor is open, how can we find in a pl/sql block?
How do I remove duplicates in two columns?
Do we need to rebuild index after truncate?
Can delete statement be rollbacked?