Answers for "Add 2 hours to current time in MySQL"

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

Code answers related to "Add 2 hours to current time in MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language