Categories: Math
BROUND
Returns the rounded result of the numeric expression using HALF_EVEN
rounding mode.
Syntax
BROUND(numeric_expression double) → float8
- numeric_expression: A numeric expression.
Examples
BROUND exampleSELECT BROUND(50.2), BROUND(50.5), BROUND(50.55), BROUND(-50)
-- 50.0, 50.0, 51.0, -50.0