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
update my_table SET modified_date = ADDTIME(scheduled_date, '03:15:00')
This will add 3 hours , 15 minutes in modified_date