Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select a recordset from row 1 to row n

Status
Not open for further replies.

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
 
Hi,

Try something like this....

SELECT TOP 10 * FROM
(Select top 60 * from TBL Order by fld ASC)
TBL1
Order by Fld DESC

Sunil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top