Answers for "mysql add hours to time field"

SQL
2

Add 2 hours to current time in MySQL

SELECT * 
FROM courses 
WHERE DATE_ADD(NOW(), INTERVAL 2 HOUR) > start_time
Posted by: Guest on October-28-2020
0

mysql add hours to time field

ADDTIME(scheduled_date, '03:15:00')
Posted by: Guest on April-26-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language