Mysql查询当前时间或指定时间前12月的时间列表

2022/4/4 2:19:54

本文主要是介绍Mysql查询当前时间或指定时间前12月的时间列表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、指定时间(2022-02-01)

select date_format(date_add(date_add('2022-02-01', interval -11 month), interval row month),'%Y-%m') yearMonth from
 ( 
    select @row := @row + 1 as row from 
    (select 0 union all select 1 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) t1,
    (select 0 union all select 1 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) t2, 
    (select @row:=-1) t3
 ) t4
 where date_format(date_add(date_add('2022-02-01', interval -11 month), interval row month),'%Y-%m') <= date_format('2022-02-01','%Y-%m')

二、当前时间

select date_format(date_add(date_add(curdate(), interval -11 month), interval row month),'%Y-%m') yearMonth from
 ( 
    select @row := @row + 1 as row from 
    (select 0 union all select 1 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) t1,
    (select 0 union all select 1 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) t2, 
    (select @row:=-1) t3
 ) t4
 where date_format(date_add(date_add(curdate(), interval -11 month), interval row month),'%Y-%m') <= date_format(curdate(),'%Y-%m')

 

转摘:https://blog.csdn.net/baidu_41909845/article/details/110439022



这篇关于Mysql查询当前时间或指定时间前12月的时间列表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程