*BUMP*
Anyone find a solutions for this?
What I am trying to do is take 50 records and paginate them using SQL.
In other words, "SELECT * FROM tbl_foo" yield 50 records.
I want to be able to get the first 10 (1-10), then the next 10 (11-20), then the next 10 (21-30), and so forth.
I believe in MySQL you can do:
"SELECT * FROM tbl_foo LIMIT 0,10" for the first 10
"SELECT * FROM tbl_foo LIMIT 11,20" for the next 10
"SELECT * FROM tbl_foo LIMIT 21,30" for the next 10
and so forth.
What would the query be for the Microsoft Access Jet Engine ?