专题文章
时长:00:00更新时间:2020-11-09 19:52:58
mysqlgroupby/having/distinct查询使用例子_MySQL:表的内容如下: //查询单分数最高的人ID select stuid,max(score) from stu_select_class; // 查询各科总分2-3名的学生 select stuid, sum(score) from stu_select_class group by stuid limit 1,2; //查询每科的
查看详情