U kunt de uren, minuten en seconden scheiden met SUBSTR
, dan SUM
het op en gebruik ten slotte NUMTODSINTERVAL
functie om het te converteren naar INTERVAL
typ.
SELECT NUMTODSINTERVAL (SUM (total_secs), 'second')
FROM (SELECT SUBSTR (duration, 1, 2) * 3600
+ SUBSTR (duration, 4, 2) * 60
+ SUBSTR (duration, 7, 2) total_secs
FROM user_tab);