I need to add 12 hours to a MySQL TIME field (not DATETIME) and I\'m having trouble.
TIME
DATETIME
UPDATE `events` SET start_time = DATE_ADD(sta
Try using ADDTIME instead of DATE_ADD. You could do SET start_time = ADDTIME(start_time, '12:00:00')
SET start_time = ADDTIME(start_time, '12:00:00')