Jun 3, 2003 #1 jianbo Programmer Dec 19, 2001 78 US I want to do a selection query, while I only want to display like from 51st to 60th records. How can I do this? Thanks
I want to do a selection query, while I only want to display like from 51st to 60th records. How can I do this? Thanks
Jun 3, 2003 #2 sunila7 Technical User Apr 11, 2001 1,087 US Hi, Try something like this.... SELECT TOP 10 * FROM (Select top 60 * from TBL Order by fld ASC) TBL1 Order by Fld DESC Sunil Upvote 0 Downvote
Hi, Try something like this.... SELECT TOP 10 * FROM (Select top 60 * from TBL Order by fld ASC) TBL1 Order by Fld DESC Sunil