I am making a quiz where I stored in a table questions and each time one question is asked I want another question to show. I have tried using rand():
select * from quiz order by rand() LIMIT 1
but the rows are being repeated.
Is there anything else I can use where I can get random rows but without getting same questions again?