Answers for "mysql query to add hours to column in table"

SQL
0

mysql query to add hours to column in table

UPDATE `events` 
SET start_time = start_time + INTERVAL 12 HOUR
WHERE `start_time` < '11:00:00'
Posted by: Guest on October-12-2021

Code answers related to "mysql query to add hours to column in table"

Code answers related to "SQL"

Browse Popular Code Answers by Language