I'm trying to run a "random" query in access03 from a table that has only two fields i.e claim# and Group#. The problem is that when I run the below code--it gives me the random amount of claims(360) needed however, its not capturing all groups within that random query each time I run the code…Thoughts
SELECT TOP 360 [table123].CLAIM_NUMBER, [table123].GROUP_NUMBER
FROM [table123]
ORDER BY Rnd([CLAIM_NUMBER]);
SELECT TOP 360 [table123].CLAIM_NUMBER, [table123].GROUP_NUMBER
FROM [table123]
ORDER BY Rnd([CLAIM_NUMBER]);