본문 바로가기

데이터베이스/ORACLE

[ORACLE] 오늘은 hh24:mi:ss 이전 기간은 yyyy-mm-dd 나타내기

select case 
        when to_char(sysdate, 'yyyy-mm-dd') = to_char(reg_date, 'yyyy-mm-dd') then to_char(reg_date, 'hh24:mi:ss') 
        else to_char(reg_date, 'yyyy-mm-dd') 
        end as reg_date
from t_board;