Feb 15, 2001 #1 Nicolasb Programmer Feb 15, 2001 3 CA Hi! My query: SELECT * FROM table Return 100 rows I want to retrieve records from row number 20 to row number 30... How can I do this? Thank you very much, Nicolas
Hi! My query: SELECT * FROM table Return 100 rows I want to retrieve records from row number 20 to row number 30... How can I do this? Thank you very much, Nicolas
Feb 19, 2001 #2 Andel Programmer Feb 15, 2001 366 US Hi, try this... SELECT TOP 10 * FROM table WHERE fieldid NOT IN (SELECT TOP 20 fieldid FROM table) Note: Replace the fieldid with a unique field. Andel Upvote 0 Downvote
Hi, try this... SELECT TOP 10 * FROM table WHERE fieldid NOT IN (SELECT TOP 20 fieldid FROM table) Note: Replace the fieldid with a unique field. Andel