Hi,
I am using PHP and MySQL.
What is the best way to grab a random record from a table if:
I do not know the total number of records in the table.
I do not know the unique primary key record id number
Thanks
SELECT * FROM mytable ORDER BY RAND() LIMIT 1