How to retrieve range of 10th rows to 20 th rows from total
rows from a database table.? (Not from Dataset)
Answer Posted / shilpa
with temp
as
( select row_number() over(order by city) rowid, * from
employee)
select * from temp
where rowid >= 10
and rowid <= 20
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the syntax to execute the sys.dm_db_missing_index_details?
What is primary key, unique key, and foreign key?
What are different type of Collation Sensitivity?
how many clustered indexes can be created on a table? : Sql server database administration
How to write a query with a left outer join in ms sql server?
Why use triggers?
What are data driven subscriptions?
How can a database be repaired?
What is 2nf normalization form?
Can we deploy SSRS reports on our personal website?
What is difference between join and natural join?
What are the types of lock supported by ?
What is etl - extraction, transformation, and loading?
What is the difference RDBMS and Graph Database?
What is the contrast between sql and mysql?