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
Can a function call a stored procedure in sql server?
What is resultset concur_updatable?
How to create a view with data from multiple tables?
Explain the various types of concurrency problem. I.e. Lost or buried updates, uncommitted dependency, inconsistent analysis, phantom read?
What is the purpose of the tempdb database?
What is the difference between an index and a unique index?
What is buffer cash and log cache in sql server?
What is a table called, if it has neither cluster nor non-cluster index? What is it used for?
What is the difference between online clustering and Offline clustering?
Can sql server be linked with other servers like oracle?
Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
What are Spatial data types in SQL Server 2008
Explain primary key in sql server?
Find first and last day of current month in sql server
How to delete exactly duplicate records from a table?