TRUNC( value, precision)
TRUNC(222.34501, 2)
Trunc cuts off all digits beyond two digits to the right of the decimal.
The TRUNC function can also take a DATE data type as an input parameter which interprets the time as midnight (12:00:00 AM). The example below shows that TRUNC has the effect of including records no matter what the time, as long as the date is Feb 7, 2007
WHERE TRUNC (enroll_date) = TO_DATE('07-FEB-2007', 'DD-MON-YYYY')
TRUNC(date)
ignores the hours, minutes, and seconds on the DATE data type.