赞
踩
利用MySQL自带表mysql.help_topic,结合类似自增字段help_topic_id,输出某日期范围内的日期
可以替换开始时间,365可换成30天等,下面是计算出2017年每一天的日期。
代码如下:
select
365-help_topic_id
,DATE_SUB(date_format('2017.12.31','%Y.%m.%d'),INTERVAL help_topic_id DAY )
from mysql.help_topic
order by help_topic_id
limit 365
结果如图:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。