How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / santosh dwivedi
select * from
(
select rownum r,a.* from TableName a
)
where r>=10 and r<=20
| Is This Answer Correct ? | 14 Yes | 10 No |
Post New Answer View All Answers
What are the different types of locks in the database?
Difference between report and query parameter.
What is the use of group by clause?
What command would you use to create an index?
How do you clear a log file?
What is dknf in normalization form?
Explain the architecture of ms sql reporting service?
Tell me what is difference between view and materialized view?
If you are given access to a SQL Server, how do you find if the SQL Instance is a named instance or a default instance?
What are different types of data sources?
How to view existing indexes on an given table using sp_help?
What is the difference between dbcc indexdefrag and dbcc reindex?
Explain the purpose of indexes?
How dts is used to extract, transform and consolidate data?
Explain cdc and sql injection?