■ trunc 함수 : 원하는 소수점 자리수 만큼만 보여주는 함수

 

 

ex) 

select sysdate, trunc(sysdate), trunc(sysdate, 'year'), trunc(sysdate, 'month'),
       trunc(123.4567, 2), trunc(123.4567)
from dual

 

 

+ Recent posts