I\'m looking at this documentation http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_maketime And I KNOW I must be missing it, but I just don\'t s
Check out FROM_UNIXTIME. That converts the number of seconds since midnight Jaunuary 1, 1970 into a timestamp.
If you have the time in seconds since midnight of your current day, then use the MAKETIME function.
MAKETIME( seconds / (60*60), seconds / 60, seconds % 60 )