I am trying to get a random row from my table. I found this SQL example:
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
Is it possible to do it in pure DQL ?
I am trying to get a random row from my table. I found this SQL example:
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
Is it possible to do it in pure DQL ?