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 / rasbeer

Declare @PageIndex int
set @PageIndex=2

select top 20 * from
(select top 20 * from
(select top (@PageIndex*20) * from chat_contents order by
id ) as a1
order by id desc)as b1 order by id

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Contrast OOP and SOA. What are tenets of each ?

2290


How asp.net mvc differs from asp.net web forms? : asp.net mvc

1162


Disable Mouse right click on web page in asp.net?

1103


What is the server of asp.net?

1133


What do you mean by serialize?

1037


is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?

2472


What is the page life cycle in asp.net?

1012


What are the different types of Caching techniques in ASP.NET?

1103


Explain weak typing and strong typing.

1034


How do http sessions work?

967


How do you identify that the page is postback?

983


What is the maximum number of classes that can be contained in one dll file?

1259


What is asp.net and how it works?

1061


What is viewstate? In which event of the page life cycle, is the viewstate available?

1059


Can we use a static function with a non-static variable?

1019