在MySql中、怎样根据年份或者月份查询数据表中的数据?

在MySql中、怎样根据年份或者月份查询数据表中的数据?,第1张

下面以比较流行的mysql图形化管理工具Navicat为例,其他工具或者在命令行中以及编程语言中 *** 作时的执行的sql语句是一样的。

1、假设在数据库中有一个名为testtest的表格,表格内容如下图所示,表中有三条记录是9月份的

2、打开一个查询窗口,输入查询语句select * from testtest where month(date)='9',该语句表示查询testtest表格中9月份的记录

3、点击“运行”执行该sql语句,在下方可以看到已经查询到了9月份的三条记录

4、如需按年查询可输入select * from testtest where year(date)='2017',2017代表需要查询的年份。如下图所示只查询到了一条记录是2017年的

比较简单直接一点的方法就是判断这个月份是不是1、4、7、10这4个月份的有一个,如果是,就是季度的第一个月。

判断条件是

if 月份 in (1,4,7,10) then 实现。

如果你是想判断月份是哪个季度的第一个月,用case when语句也就可以实现了

数据表中不存在的月份也要显示,建议创建一个从1到12月份的表作为比对表。如果不方便创建月份比对表则可以用select 1到12的办法来虚拟这个月份比对表,但是语句会有些冗长。请参考下列写法:

select months.year,months.month, 

concat(ifnull(t.sumMonthNum,'0'),

'/',months.sumYearNum) as `月/年比`

from 

(select * from 

(select year(time) as year,

sum(num) as sumYearNum 

from abc group by year(time)) years, 

(select 1 as month union all 

select 2 union all 

select 3 union all 

select 4 union all 

select 5 union all 

select 6 union all 

select 7 union all 

select 8 union all 

select 9 union all 

select 10 union all 

select 11 union all 

select 12) months) months left join 

(select year(time) as year,

month(time) as month,

sum(num) as sumMonthNum 

from abc group by year(time),month(time)) t 

on months.month=t.month 

order by months.year,months.month

实验截图如下:

源表数据

SQL代码及运行结果


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6148201.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存