Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Aktualisieren Sie nur die Zeit in einem mysql DateTime-Feld

Versuchen Sie Folgendes:

UPDATE yourtable 
SET yourcolumn = concat(date(yourcolumn), ' 21:00:00')
WHERE Id = yourid;