A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / jayanth
select * from (select a.*, row_number() over (order by empno) rn from emp a) where rn between 100 and 120;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we join two tables without common column?
What is crud diagram?
Does truncate release storage space?
What is assignment operator in pl sql?
What is difference between hql and sql?
What are triggers in sql?
Is it possible for a table to have more than one foreign key?
how can we know the number of days between two given dates using mysql? : Sql dba
Explain the difference between sql and mysql.
What is the difference between the implicit and explicit cursors?
How do you declare a variable in pl sql?
What are the different sql languages?
Is sqlite free?
What is the difference between clustered and non-clustered index in sql?
what is the difference difference between procedure and packages