up vote 0 down vote favorite

Is there is any way to get the select Random Records using query from table in mySql.

link|flag

2 Answers

up vote 2 down vote accepted

How about something like

SELECT * FROM `table` ORDER BY RAND() LIMIT 0,1;
link|flag
thanks astander – Yashwant Chavan Mar 9 at 7:20
up vote 0 down vote
SELECT * FROM `table` WHERE RAND() < 0.5

change the percentage to include more or less records. add a LIMIT clause to, well, limit to a maximum number of records

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.