Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Rounds the expression to a fixed number of decimal digits.Syntax
ROUND_TO(numeric_expression, digits [, mode]) Arguments numeric_expression - the value to round (float or double) digits - the number of digits to preserve (int) mode (optional) - round modeExamples
ROUND_TO(3.14151976,3) returns 3.142
ROUND_TO(42.1,-1) returns 40.0
ROUND_TO(3.5,0,4) returns 4.0