如何在MySQL中已经存在的DateTime字段中仅更新时间?我希望日期保持不变。
最佳答案
尝试这个:
UPDATE yourtable
SET yourcolumn = concat(date(yourcolumn), ' 21:00:00')
WHERE Id = yourid;
关于sql - 在mysql DateTime字段中仅更新时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1326548/