Home  >  Article  >  Database  >  mysql存储过程时间月份减法_MySQL

mysql存储过程时间月份减法_MySQL

WBOY
WBOYOriginal
2016-06-01 12:59:051090browse

declare startTime VARCHAR(19) default '2014-00-00 00:00:00';
declare tempTime VARCHAR(19) default NOW();
declare endTime VARCHAR(19) default DATE_SUB(tempTime,INTERVAL '3' MONTH); -- 后退三个月时间

DECLARE MONTHSTR VARCHAR(7) default SUBSTR(endTime,1,7);
set endTime=CONCAT(MONTHSTR,'-00 00:00:00');


SELECT startTime as startTime,endTime AS endTime;

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