Pages

Showing posts with label row. Show all posts
Showing posts with label row. Show all posts

Sunday, November 11, 2012

Selecting random row from mysql database

Here is a simple query to select random row from a phpmysql database

Select * from `users` ORDER BY rand() limit 0,1

where users is the name of my table