How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / vinay
SELECT TOP 10
ID,Name,Address
FROM TableName
WHERE ID NOT IN (SELECT TOP 10 ID FROM TableName)
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
What is trigger explain with program?
Define candidate key, alternate key, and composite key.
How do we know if any query is retrieving a large amount of data or very little data?
How to rebuild indexes with alter index ... Rebuild?
What happens to a statement batch if there is a compilation error?
What is importing utility?
What are the properties and different types of sub-queries?
Can the “if update (colname)” statement be used in a delete trigger?
What is inner join? Explain with an example?
What is the sql profiler?
How to create new databases with "create database" statements?
Does table partitioning improve performance?
Why it is recommended to avoid referencing a floating point column in the where clause?
What are triggers? How do you invoke a trigger on demand?
How do I clean up sql server transaction log?