Answers for "mysql add 2 hours"

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
1

mysql add 2 hours

DATE_ADD(NOW(), INTERVAL 2 HOUR)
Posted by: Guest on July-03-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language