I have two columns: beginTime and duration. I'm trying to calculate the endTime. The problem is that i get empty results back.
I have tried several things.
DATE_ADD(startTime, INTERVAL `duration` MINUTE) AS endTime
DATE_ADD(startTime, INTERVAL '10' MINUTE) AS endTime
DATE_ADD(startTime, INTERVAL 10 MINUTE) AS endTime
But everytime the result is empty. startTime is not empty. It is a time field in the format 09:00:00.
Can anyone help me with this?