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
Do you know spatial data types - geometry and geography in sql server 2008?
What is normalization 1nf 2nf 3nf?
What is rs.exe utility?
Why use “pivot” in sql server?
How to send a ssrs report from ssis?
Describe in brief databases and sql server databases architecture.
How to create and drop temp table in sql server?
What is the function of sql server agent windows service?
Why should one not prefix user stored procedures with ‘sp_’?
What is the difference between index seek vs. Index scan?
Create a dts package to produce a text file using the ‘update statistics’ command for the tables in a database with obsolete statistics.
What are the tools available in market as an alternative to sql server reporting services?
what is a transaction? : Sql server database administration
Explain a checkpoint?
Can you please differentiate between a primary key and a unique key?