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
Ypercude provided a link that led me to the right answer below:
SELECT TOP 1 ABBREVIATION FROM STATEABBREVIATION ORDER BY RND(ID);
Note that for RND(), I believe that it has to be an integer value/variable.