Feb 15, 2001 #1 Nicolasb Programmer Joined Feb 15, 2001 Messages 3 Location 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 Joined Feb 15, 2001 Messages 366 Location 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