Simple Random Samples from a MySQL Sql database
I think the fastest solution is select * from table where rand() <= .3 Here is why I think this should do the job. It will create a random number for each row. The number is between 0 and 1 It evaluates whether to display that row if the number generated is between 0 and … Read more