Hi
I have a table storing time-sheet data, including a start & end time. I've set those fields as 'TIME' format, and tried doing the following calculation
SELECT SUM(log_end - log_start) AS timetotal FROM time_logs WHERE log_client = 'ECDC'
It returned an integer, which doesn't correspond with any of my other calculations... is this integer 'number of seconds'?