GROUP BY的使用
【摘要】 前言
本文介绍 group by 关键字在mysql中的使用
创建数据库
创建如下初始化数据库,供后面测试使用;
DROP TABLE IF EXISTS `user_info`;
CREATE TABLE `user_info` ( `id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id', `user_id` VARCHAR(...
前言
本文介绍 group by 关键字在mysql中的使用
创建数据库
创建如下初始化数据库,供后面测试使用;
DROP TABLE IF EXISTS `user_info`;
CREATE TABLE `user_info` ( `id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '主键id', `user_id` VARCHAR(50) NOT NULL DEFAULT '' COMMENT '用户编号', `grade` VARCHAR(50) NOT NULL DEFAULT '' COMMENT '年级', `score` INT(11) DEFAULT 0 COMMENT '分数', `class` VARCHAR(50) NOT NULL DEFAULT '' COMMENT '班级', PRIMARY KEY (`id`), UNIQUE INDEX `uniq_user_id` (`user_id`)
);
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (10, '10230', 'C',11, 'B');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (9, '10229', 'C',11, 'a');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (8, '10228', 'B',11, 'b');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (7, '10227', 'B',11, 'b');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (6, '10226', 'B',11, 'a');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (5, '10225', 'B',11, 'a');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (4, '10224', 'A',11, 'b');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (3, '10223', 'A',11, 'b');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (2, '10222', 'A',11, 'a');
INSERT INTO `user_info` (`id`, `user_id`, `grade`,`score`, `class`) VALUES (1, '10221', 'A',11, 'a');
使用样例
- 查询记录中各个grade中的最大值
select max(user_id),grade from user_info group by grade ;
- 添加过滤条件
select max(user_id),grade from user_info group by grade having grade>'A'
- 查询各个grade的总分数
select SUM(score),grade from user_info group by grade ;
文章来源: www.jianshu.com,作者:Nick_4438,版权归原作者所有,如需转载,请联系作者。
原文链接:www.jianshu.com/p/2d1e050edb9a
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)