Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

if i have 1000 records and i want to access 20 ata time
from SQL server, what will be the query?

Answer Posted / vijendra singh

Use The following Query for the problem...

Declare @PageIndex int
set @PageIndex=1
Declare @PageSize int
set @PageSize=20
while @PageIndex < 1000
begin
SELECT * FROM test WHERE ID between
@PageIndex and @PageIndex+@PageSize-1
set @PageIndex = @PageIndex + 20
end

Is This Answer Correct ?    13 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How you can add an event handler?

1015


Explain global assembly cache.

1079


What are all the various Estimation Techniques available ?

1146


How will you maintain versioning in asp.net 2.0?

1070


What is the difference between user control an custom control?

1164


Differentiate between namespace and assembly.

1027


Is it possible for me to change my aspx file extension to some other name?

1068


What is the significance of ASP.NET routing?

1122


What are the new features implemented in ASP.NET?

1128


What is the main function of url routing system in asp.net mvc? : asp.net mvc

1059


How to store checkbox value in database in asp.net mvc? : Asp.Net MVC

1024


Which is faster viewdata or viewbag?

1049


What is repository pattern in mvc.net? : asp.net mvc

1037


What are httphandlers and httpmodules and difference between them?

1057


What are the types of session in asp.net?

1014