Mysql 只修改日期的年月日

来源:互联网 发布:涂银遮光布有毒吗 知乎 编辑:程序博客网 时间:2024/05/30 21:58


--  只修改日期字段的年月日

update tb_mytable set db_update_time=date_format(concat('2016-04-01 ',time(db_update_time)),'%Y-%m-%d %H:%i:%S');

0 0