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
Tell me in brief how sql server enhances scalability of the database system?
how to do partition in sqlserver
how do you test proper tcp/ip configuration windows machine? : Sql server database administration
What is the default sql server instance name?
What is a primary index?
How to compose an inquiry to demonstrate the points of interest of an understudy from students table whose name begins with k?
what is the maximum size of a row? : Sql server database administration
IF more than one Site is accessing the same Database server and I want to move the DB with Minimum down time? How will you do
What is replace and stuff function in sql server?
What is the fillfactor concept in indexes?
How extra digits are handled with numeric data type literals?
New concepts of sql server 2005 use in your project.
What is implicit cursors?
How to select an exiting database using mssql_select_db()?
Explain intellisense for query editing