需求:需要将某个时间字段日期改为前一天,但是时分秒还用原来的。
update table set pay_date= ADDTIME(DATE('2021-09-16') + interval 0 hour,time(date)) where id>1234;