I want to get more readable value using interval data type.
select cast(last_run_duration as INTERVAL DAY TO SECOND(0))
from dba_scheduler_jobs
order by 1 desc;
Query result like this;
+00 00:00:04.630530
+00 00:00:01.352359
+00 00:00:00.737282
+00 00:00:00.594381
+00 00:00:00.432710
What i want is this. Only getting Hour:minute:second ;
00:00:04
00:00:01
00:00:00
00:00:00
00:00:00
last_run_duration column's datatype is INTERVAL DAY(9) TO SECOND(6)