I am trying to group by job id while having it count the milliseconds in each row of the job id.
For example ill have 5 rows of job 55 all with different milliseconds like .3, .5, 1.5, .3, .4. I don't want it to display 5 rows, only one like this: 55 | 3.0
This is how far i've gotten i just need a little nudge int eh right direction.
SELECT job_ID, AVG_REC_TIME_MILLIS, count(AVG_REC_TIME_MILLIS)
FROM job_step js
GROUP BY js.JOB_ID;
SUMinstead ofCOUNT().