to_text_with_precision
converts any numeric data type to text format with precise decimal points.
Syntax
to_text_with_precision(value, precision)
Parameters
value
and precision
should both contain numerical values.
value
can include any data in numerical format.precision
will be a number, indicating what decimal place you’d like to round to.
Examples
to_text_with_precision(2.1234, 2)
= 2.12