A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / arif hussain
select * from (
select ROW_NUMBER() over (order by tablename.columnname)as ronno,* from tablename )x
where ronno between 100 and 120
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is sql the best database?
How do you identify a primary key?
What is the difference between the repeatable read and serializable isolation levels? : Transact sql
what is try_catch block in procedure
What is pl sql architecture?
How to download oracle sql developer?
Explain cursor types?
Enlist some predefined exceptions?
What is primary key in db?
Is vs as in pl sql?
Is sql developer case sensitive?
What is a join?
State some properties of relational databases?
What is column?
Is sql free?