Hey Guys,
I'm having trouble summing up a list of times stored in a MySQL database. I have a column of attribute TIME, with name "duration" of which i want totalled. The tricky bit is that I need the result displayed in HH:MM format.
My query works 80% of the time, but on certain occasions, it returns nothing. For example sometimes the query returns 35:30, however If i add a row of 04:30 to the table, my total becomes blank.
$query="SELECT TIME_FORMAT((SUM(duration)),'%H:%i') FROM timecard;
$total=mysql_query($query);
Any suggestions of what is causing this, and how to fix it?
Thanks,
- Justin