MySQL add 12 hours to a time field

Try using ADDTIME instead of DATE_ADD. You could do SET start_time = ADDTIME(start_time, '12:00:00')

Leave a Comment