ThinkPHP框架随机取出数据:

M('article')->group('rand()')->limit(10)->select();

MySQL语句随机取出数据:

SELECT * FROM tablename ORDER BY RAND() LIMIT 10;