发布网友 发布时间:2022-04-23 13:55
共5个回答
热心网友 时间:2022-04-28 05:41
就是分组进行譬如,学生表student里有多个班级(classID)的学生,现在要统计每个班有多少学生,就用select热心网友 时间:2022-04-28 06:59
GROUP BY 是分组查询, 一般 GROUP BY 是和 聚合函数配合使用热心网友 时间:2022-04-28 08:34
SELECT column_name, aggregate_function(column_name)热心网友 时间:2022-04-28 10:25
给你几个参考链接哈。参考资料:http://www.w3school.com.cn/sql/sql_groupby.asp
热心网友 时间:2022-04-28 12:33
select id,sum(amount) from table group by id