博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL之聚合
阅读量:6587 次
发布时间:2019-06-24

本文共 897 字,大约阅读时间需要 2 分钟。

EP:巧妙地过滤掉重复的日期

example:使用bit_or()  bit_count()巧妙地过滤掉重复的日期:CREATE TABLE t1(   year    YEAR(4),   month   INT(2) UNSIGNED ZEROFILL,   day     INT(2) UNSIGNED ZEROFILL);INSERT INTO t1     VALUES (2000, 1, 1),(2000, 1, 20),(2000, 1, 30),(2000, 2, 2),(2000, 2, 23),(2000, 2, 23);+------+-------+------+| year | month | day  |+------+-------+------+| 2000 |    01 |   01 || 2000 |    01 |   20 || 2000 |    01 |   30 || 2000 |    02 |   02 || 2000 |    02 |   23 || 2000 |    02 |   23 |+------+-------+------+#计算天数去除重复天数SELECT year, month, BIT_COUNT(BIT_OR(1 << day)) AS days FROM t1 GROUP BY year, month;+------+-------+------+| year | month | days |+------+-------+------+| 2000 |    01 |    3 || 2000 |    02 |    2 |+------+-------+------+*****-GROUP_CONCATselect group_concat(DISTINCT b order by b desc separator ':') FROM z group by a;

  

  

转载于:https://www.cnblogs.com/similarface/p/5736758.html

你可能感兴趣的文章
war 宽度变窄
查看>>
set p4 environment in windows
查看>>
自定义指令的参数
查看>>
python实现进度条
查看>>
Android 一个应用启动另一个应用的说明
查看>>
阿里云CentOS7服务器利用LVM分区挂载磁盘全记录
查看>>
Setting up the Web Admin Tool in LDAP 6.x to communicate via SSL
查看>>
SQL好习惯:编写支持可搜索的SQL
查看>>
Shadowbox
查看>>
【 程 序 员 】:伤不起的三十岁,你还有多远 ?
查看>>
openldap安装
查看>>
[leetcode]count and say
查看>>
润乾报表 - 缓存问题
查看>>
利用IFormattable接口自动参数化Sql语句
查看>>
泛型Dictionary的用法详解
查看>>
明晰三种常见存储技术:DAS、SAN和NAS
查看>>
ContentProvider简单介绍
查看>>
Visual Studio 2014 CTPs 下载 和C# 6.0 语言预览版介绍
查看>>
js混淆 反混淆 在线
查看>>
WinForm 之 程序启动不显示主窗体
查看>>