want to retrieve a random sigle record from a table with a query

S

Steve Schapel

Wrenchman,

Try this...
SELECT * FROM YourTable
WHERE YourID In(SELECT First([YourID]) FROM YourTable)
 
Top