Home >Backend Development >PHP Tutorial >PHP中csv导出三个月内的数据解决方案

PHP中csv导出三个月内的数据解决方案

WBOY
WBOYOriginal
2016-06-13 12:06:27833browse

PHP中csv导出三个月内的数据
如题
我想的是算出三个月前的第一天到这个月的最后一天 
能取到三个月的第一天 然后应该怎么做啊
------解决思路----------------------
select * fromtbl_namewhere date >= date_format(subdate(now(), INTERVAL 3 month), '%Y-%m-%d')

select * fromtbl_namewhere date >= date_format(subdate(now(), INTERVAL 3 month), '%Y-%m-01')


------解决思路----------------------
date("Y-m",strtotime("-3 month"))."-01"; 三个月前的第一天

------解决思路----------------------
你都有算法了   三个月的不会么?   照葫芦画瓢整呗

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn