How can I update only the time in an already existing DateTime field in MySQL? I want the date to stay the same.
Try this:
UPDATE t1 SET DateTimeField = CONCAT(DATE(DateTimeField),' 12:34:56');