mysql 分组
来源:SegmentFault
时间:2023-01-16 10:44:20 245浏览 收藏
积累知识,胜过积蓄金银!毕竟在##column_title##开发的过程中,会遇到各种各样的问题,往往都是一些细节知识点还没有掌握好而导致的,因此基础知识点的积累是很重要的。下面本文《mysql 分组》,就带大家讲解一下MySQL、PHP知识点,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~
表结构和数据
create table cat( id(1) int not null auto_increment primary key, cat_id int(1), value int(1), name varchar(20) ); insert into cat (cat_id,name,value) values ('1','name1', '1'); insert into cat (cat_id,name,value) values ('1','name2', '2'); insert into cat (cat_id,name,value) values ('1','name3', '3'); insert into cat (cat_id,name,value) values ('1','name4', '4'); insert into cat (cat_id,name,value) values ('2','name5', '5'); insert into cat (cat_id,name,value) values ('2','name6', '6'); insert into cat (cat_id,name,value) values ('2','name7', '7'); insert into cat (cat_id,name,value) values ('2','name8', '8'); insert into cat (cat_id,name,value) values ('3','name9', '9'); insert into cat (cat_id,name,value) values ('3','name10','10'); insert into cat (cat_id,name,value) values ('3','name11','11'); insert into cat (cat_id,name,value) values ('3','name12','12'); mysql> select *from cat; +----+--------+-------+--------+ | id | cat_id | value | name | +----+--------+-------+--------+ | 1 | 1 | 1 | name1 | | 2 | 1 | 2 | name2 | | 3 | 1 | 3 | name3 | | 4 | 1 | 4 | name4 | | 5 | 2 | 5 | name5 | | 6 | 2 | 6 | name6 | | 7 | 2 | 7 | name7 | | 8 | 2 | 8 | name8 | | 9 | 3 | 9 | name9 | | 10 | 3 | 10 | name10 | | 11 | 3 | 11 | name11 | | 12 | 3 | 12 | name12 | +----+--------+-------+--------+ 12 rows in set (0.13 sec)
查询分组最大记录
// 默认取分组第一条 mysql> select *from cat group by cat_id order by cat_id; +----+--------+-------+-------+ | id | cat_id | value | name | +----+--------+-------+-------+ | 1 | 1 | 1 | name1 | | 5 | 2 | 5 | name5 | | 9 | 3 | 9 | name9 | +----+--------+-------+-------+ 3 rows in set (0.00 sec) mysql> select *from (select *from cat order by value desc) a group by cat_id; +----+--------+-------+--------+ | id | cat_id | value | name | +----+--------+-------+--------+ | 4 | 1 | 4 | name4 | | 8 | 2 | 8 | name8 | | 12 | 3 | 12 | name12 | +----+--------+-------+--------+ 3 rows in set (0.06 sec) mysql> select a.* from cat a where value = (select max(value) from cat where cat _id = a.cat_id) order by a.cat_id; mysql> select a.* from cat a,(select cat_id,max(value) value from cat group by cat_id) b where a.cat_id = b.cat_id and a.value = b.value order by a.cat_id; mysql> select a.* from cat a inner join (select cat_id, max(value) value from cat group by cat_id) b on a.cat_id= b.cat_id and a.value= b.value order by a.cat_id; +----+--------+-------+--------+ | id | cat_id | value | name | +----+--------+-------+--------+ | 4 | 1 | 4 | name4 | | 8 | 2 | 8 | name8 | | 12 | 3 | 12 | name12 | +----+--------+-------+--------+ 3 rows in set (0.00 sec)
分组前 3 条记录
mysql> select a.* from cat a where exists (select count(*) from cat where cat_id= a.cat_id and value > a.value having Count(*) select *from cat a where (select count(*) from cat b where a.cat_id=b.cat_id and b.value>a.value)
好了,本文到此结束,带大家了解了《mysql 分组》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多数据库知识!
声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
最新阅读
更多>
-
208 收藏
-
174 收藏
-
317 收藏
-
371 收藏
-
244 收藏
-
288 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习
评论列表
-
- 满意的老师
- 这篇文章真及时,太全面了,感谢大佬分享,mark,关注作者大大了!希望作者大大能多写数据库相关的文章。
- 2023-03-30 17:42:19
-
- 会撒娇的香菇
- 真优秀,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,帮助很大,总算是懂了,感谢师傅分享博文!
- 2023-01-22 23:09:29
-
- 烂漫的黑夜
- 这篇文章内容真是及时雨啊,博主加油!
- 2023-01-22 10:51:45
-
- 积极的草丛
- 这篇文章出现的刚刚好,太全面了,很有用,码住,关注师傅了!希望师傅能多写数据库相关的文章。
- 2023-01-20 03:33:17
-
- 矮小的花瓣
- 细节满满,收藏了,感谢作者大大的这篇文章内容,我会继续支持!
- 2023-01-18 16:24:31