Maneiras Corretas de Ordernação!
No Mysql
select * from tabela order by rand()
No SQL SERVER
select * from tabela order by newid()
No PostGreSQL
Select * from tabela order by random()
No Oracle
Select coluna from (select coluna from tabela order by dbms_random.value) where rownum = 1