mysql add hours to time field

Solutions on MaxInterview for mysql add hours to time field by the best coders in the world

showing results for - "mysql add hours to time field"
Alessandro
02 Sep 2018
1SELECT * 
2FROM courses 
3WHERE DATE_ADD(NOW(), INTERVAL 2 HOUR) > start_time
Erica
16 Aug 2020
1ADDTIME(scheduled_date, '03:15:00') 
2