您非常接近:
(select * from student where SECTION = 'A' order by rand() LIMIT 3) union all(select * from student where SECTION = 'B' order by rand() LIMIT 2)order by rand();
子查询用于
order by rand()获取每个年级的随机学生。外部
order by rand()将五个学生随机分组。
注意:这是完成所需内容的最简单方法。如果
students表的大小适中,而性能是一个问题,则可以选择其他解决方案。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)