develog

[Oracle] total_sec 을 hh:mm:ss 로 변환 본문

DB/Oracle

[Oracle] total_sec 을 hh:mm:ss 로 변환

냐옴 2017. 4. 4. 11:59

 SELECT
    TO_CHAR(TRUNC(:TOTAL_SEC/3600),'FM9900') || ':' ||
    TO_CHAR(TRUNC(MOD(:TOTAL_SEC,3600)/60),'FM00') || ':' ||
    TO_CHAR(MOD(:TOTAL_SEC,60),'FM00')
 FROM DUAL


입력

 :TOTAL_SEC => 3600


결과

 01:00:00


'DB > Oracle' 카테고리의 다른 글

[Oracle] index 비활성  (0) 2017.04.28
[Oracle] insert all  (0) 2017.04.13
[Oracle] timestamp to date  (0) 2017.04.03
[Oracle] Function return table  (0) 2017.03.27
[Oracle] 참조 찾기  (0) 2017.03.27
Comments