How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / adhar jain
With temp As
(
Select columns,
row_number() Over (Order By sort_Column) As row_num
From table
)
Select * from temp where row_num between 10 and 19
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is database replication? What are the different types of replication you can set up in sql server?
How many primary keys are possible in a table?
Please explain the characteristics of a transaction server for example atomicity, consistency, isolation, durability?
What is clustered index
How to create a large table with random data for index testing in ms sql server?
How display code or Text of Stored Procedure using Sql query in Sql Server ?
what happens on checkpoint? : Sql server database administration
What is merge join?
What is the purpose of update statistics and scope_identity() function?
What is dirty page?
Explain index in sql server?
Explain logical operators in sql server?
Define master database?
Tell me something about security and sql azure?
What is the difference between value type and reference type?