I have a small access database with some tables. I am trying the code in the sql design within access. I just want to randomly select a record within a table.
I cre
Try this:
SELECT TOP 1 * FROM tbl_name ORDER BY NEWID()
Of course this may have performance considerations for large tables.