Quote:
Originally posted by lost1
Well, That would work as a distinct row but access seems like it take a sum of all fields to test if the row is distict. Getting closer though. That would take the 9,000 record query and drop it to about 90!.
Any other thoughts
Thanks
Larry
|
Try setting the query's unique records property to yes. This will possibly further restrict your recordset as it will look for unique records from the underlying tables.
But if you are simply looking to return an arbitrary 10 records, then try the TOP qualifier (as in SELECT TOP 10 for the beginning of the SQL statement).
Cheers, Bill