我现在正在按月贷款工作,我遇到了用php和mysql生成每月计划的问题。 我的问题是: 示例:贷款日期= 2015年12月2日,持续时间= 5个月 我不知道如何插入数据库,如下所示:
<table border='1' cellspacing='0' cellpading='0'>
<tr>
<th>Month</th>
<th>Date</th>
</tr>
<tr>
<th>1st month</th>
<th>2/12/2015</th>
</tr>
<tr>
<th>2nd month</th>
<th>3/12/2015</th>
</tr>
<tr>
<th>3rd month</th>
<th>4/12/2015</th>
</tr>
<tr>
<th>4th month</th>
<th>5/12/2015</th>
</tr>
<tr>
<th>5th month</th>
<th>6/12/2015</th>
</tr>
<tr>
<th>6th month</th>
<th>7/12/2015</th>
</tr>
<table>
&#13;
答案 0 :(得分:0)
在此查询中,从您的时间戳值中添加下个月,您可以根据您的持续时间调整此值
INSERT INTO `tbl_book`(`book_date`) VALUES (now( ) + INTERVAL 1 MONTH)