一、
update
srba_person_critical_business
set period_to = DATE_ADD(period_to,INTERVAL -30 DAY),remark = CONCAT(remark,‘;原本to是‘,period_to,‘小杨新改为‘,DATE_ADD(period_to,INTERVAL -30 DAY))
where DATEDIFF(period_to,period_from)=395 and YEAR(insert_time)=‘2017‘;
执行这条update,发现remark字段中取到的period_to的值竟是第一个set之后的值。