Oracle
 sql >> Database >  >> RDS >> Oracle

Converti VARCHAR2 in Numero

Puoi separare ore, minuti e secondi usando SUBSTR , quindi SUM e infine usa NUMTODSINTERVAL funzione per convertirlo in INTERVAL digitare.

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);