up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

68% accept rate
duplicate: stackoverflow.com/questions/142242/… – Mitch Wheat Mar 9 '10 at 7:17
feedback

2 Answers

up vote 2 down vote accepted

How about something like

SELECT * FROM `table` ORDER BY RAND() LIMIT 0,1;
link|improve this answer
thanks astander – Yash Mar 9 '10 at 7:20
feedback
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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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