
Phillip A. answered 02/19/21
Sr. Systems Engineer with 15+ years experience applying SQL technology
You can use the Round() function to perform either rounding or truncation. The function takes 3 arguments: The number to be rounded/truncated, the number of decimal places you want in the result, and an indicator to perform rounding or truncation. To get truncation, specify a value other than 0 in the 3rd argument.
Example:
SELECT ROUND(99.476, 2, 1)