adspace
suppose we have a table in which 200 rows. i want to find
101 row ? what the query....
and how we find 4th and 5th highest salary and 1 to 10
highest salary
Answer Posted / priya
Here It is asked for 101 row. It does not mean ascending or
descending order.
So query goes like this
Ans:select * from emp where rowid in(
select max(no) from
(select rowid as no,sal from emp where rownum<102));
To Find the 101th row higest salary
Ans:
select max(sal) from (
select * from emp order by sal) s where rownum<102;
similarly for 4th highest it is 5 and for (n-1)th sal it is
n.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do I remove duplicates in two columns?
how many tables will create when we create table, what are they? : Sql dba
how to start mysql server? : Sql dba
What is the current version of postgresql?
what is bcp? When does it used? : Sql dba
what is collation? : Sql dba
what are aggregate and scalar functions? : Sql dba
If a cursor is open, how can we find in a pl/sql block?
what are the advantages of sql ? : Sql dba
Is inner join faster than left join?
define sql insert statement ? : Sql dba
what is schema? : Sql dba
what is dbms? : Sql dba
Can we use distinct and group by together?
Can delete statement be rollbacked?