I've the following query which return the run time for 1200 videos , i want to get the total of run time in hh:mm:ss:ms
select runtime from video where ready_date between '2017-07-01' AND '2017-07-30';
my output will look like
"00:00:33:07"
"00:00:37:09"
"00:01:52:02"
"00:00:41:05"
i've tried sum(runtime) but looks i'm doing the wrong thing here ,
any tips ?