Select a raondom row

Select a random row with mysql:

select column_name from table_name order by rand() limit 1

Select a random row with SQL Server

select top 1 column_name from table_name order by newid()

Theme by Danetsoft and Danang Probo Sayekti inspired by Maksimer