MySQL выберите случайный идентификатор из таблицы

-- randomly order, select first 5 rows
select * from `table_name` order by rand() limit 5
inibir