网络编程
位置:首页>> 网络编程>> 数据库>> mysql 查询表中平均分最低的班级

mysql 查询表中平均分最低的班级

  发布时间:2024-01-22 05:23:45 

标签:mysql,平均分最低

drop table if exists dd;
create table dd (
user_id int ,
class_no int ,
score int
);
insert into dd values (1,1,1), (2,1,1), (3,1,2), (4,2,2);
select class_no ,avg(score)from dd group by class_no order by avg(score);


在MySQL下面测试通过。

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com