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
what are the disadvantages of cursors? : Sql server database administration
as a part of your job, what are the dbcc commands that you commonly use for database maintenance? : Sql server database administration
What is the difference between online clustering and Offline clustering?
What is an inner join?
How to access the deleted record of an event?
What is the difference between migration and upgradation in sql server?
What Are the Main Features of SQL Azure?
What is BCNF? How is it better than 2NF & 3NF?
Explain alternate key, candidate key and composite key in sql server?
Can you always create a cache of a report?
How do I create a stored procedure in dbml?
What is query processing?
What is sql server locking?
How do we Backup SQL Azure Data?
How to get the definition of a user defined function back?