View Single Post
  #1  
Old December 11th, 2009, 12:28 PM posted to microsoft.public.access.queries
Ljudmil
external usenet poster
 
Posts: 6
Default Real 10 random records

Hi,
I have a query which gives me 10 random records.

SELECT TOP 10 Basis_.t, Basis_.r, Basis_.Basis_code
FROM Basis_
ORDER BY Rnd(Basis_code);

Basis_code is an Auto Number field.
It works fine but when I open the database and run the query I always get
the same “10 random records”. What should I do to get different 10 random
records when I open the database?
Thanks in advance!
Ljudmil