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
Mention the differences between local and global temporary tables.
What is dirty page?
What is the maximum size per database for sql server express?
Explain about SQL server 2005?
How can you start sql server in different modes?
Find first and last day of current month in sql server
How to copy the tables, schema and views from one sql server to another?
Why it is recommended to avoid referencing a floating point column in the where clause?
What is the meaning of resultset type_scroll_insensitive?
What is usually the first word in a sql query?
What is the difference between dropping a database and taking a database offline?
What to perform pattern match with the like operator?
State the difference between union and union all?
Tell me what is fill factor?
what are different types of backups available in sql server? : Sql server database administration