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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM