首页 > 代码库 > Mysql 高效随机生成N条记录

Mysql 高效随机生成N条记录

 1 select *, rand() as random FROM yef_exercises where id not in(1) order by random limit 1 // Mysql