How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / philip
select Row_Number() over(order by Table_columnName) as
number from TableName where Table_columnName>=10 and
Table_columnName<=20
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain features of analysis services?
What is triggers in ms sql server?
Can you explain the disadvantages/limitation of the cursor?
What is the difference between DataRow.Delete() and DataRow.Remove()?
What is normalization of database? What are its benefits?
Explain logical operators in sql server?
What do you understand by hotfixes and patches in sql server?
How can you hide the sql server instances?
What are .mdf files?
How to convert a numeric expression from one data type to another?
What is create statement?
How do you implement session management in SQL Server mode?
Is mysql the same as sql server?
Explain a differential backup?
Does union all remove duplicates?