Você pode separar as horas, minutos e segundos usando
SUBSTR
, então SUM
e finalmente use NUMTODSINTERVAL
função para convertê-lo em INTERVAL
tipo. 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);