ROUND (Lakehouse v2)
Rounds a number to a specified number of decimal places.
Analyze Syntax
Section titled “Analyze Syntax”func.round(<x>[, <d>])Analyze Examples
Section titled “Analyze Examples”func.round(3.14159, 2)
┌──────┐│ 3.14 │└──────┘SQL Syntax
Section titled “SQL Syntax”ROUND(<x>[, <d>])SQL Examples
Section titled “SQL Examples”SELECT ROUND(3.14159, 2);
┌──────┐│ 3.14 │└──────┘