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 `events` SET start_time = start_time + INTERVAL 12 HOUR WHERE `start_time` < '11:00:00'
The MySQL functions that accept INTERVAL arguments are mostly unnecessary; you can just add and subtract intervals with + and -.
INTERVAL
+
-