The following query returns the result 32.4500.
SELECT TRUNC(32.4567, 2);
The following query returns the result 30.0000.
SELECT TRUNC(32.4567, -1);
The following query returns the result 32.4500.
SELECT TRUNC(32.4567, 2);
The following query returns the result 30.0000.
SELECT TRUNC(32.4567, -1);