例如,我将(2013-06-03 22:00:00)
存储在名为Log
的表中。
我希望更新后的输出是(2013-06-03 07:30:00),只修改小时、分钟和秒。
如何只更新时间?
PHP版本为5.3
mysql:
update your_table set your_field=concat(date(your_field),' 07:30:00');