How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / santosh dwivedi
select * from
(
select rownum r,a.* from TableName a
)
where r>=10 and r<=20
Is This Answer Correct ? | 14 Yes | 10 No |
Post New Answer View All Answers
How can you know if the row fetched from cursor is still valid in underlying table?
What is sql language?
Does a specific recovery model need to be used for a replicated database? : sql server replication
what is database replicaion? : Sql server database administration
What is an example of a primary key?
What is a partition key?
What is a domain constraint give an example?
What are the methods used to protect against sql injection attack?
Can group by and orderby be used together?
What are the differences between web role and worker role?
What is a trace frag? Where do we use it?
What is NOT NULL Constraint in sql server 2012?
What is an expression in ms sql server?
Define msdb database?
What is the difference between DATETIME2 and DATETIME?