G
Guest
I would like to limit the number of records I retrieve in my SQL query to, for example, the first 1000 records in the results set. I could do a make table query and then manually select and delete everything after the 1000th record, but I would rather do it programatically. An alternative would be to be able to create a calculated field which would increment by 1 on each row which is returned and then using the where clause to get rid of the records over my limit. Any ideas would be appreciated.