TRUNCATE
{TRUNC | TRUNCATE} ({{numeric, digitsInt} | timestamp | date | timestampString})
Description
Truncates to a number of digits (to the next value closer to 0). This method returns a double. When used with a timestamp, truncates a timestamp to a date (day) value. When used with a date, truncates a date to a date (day) value less time part. When used with a timestamp as string, truncates a timestamp to a date (day) value.
Example
TRUNCATE(VALUE, 2);
Updated over 4 years ago