ROUND

Rounds a number to a specified number of decimal places.

Analyze Syntax

func.round(<x>[, <d>])

Analyze Examples

func.round(3.14159, 2)

┌──────┐
 3.14  
└──────┘

SQL Syntax

ROUND(<x>[, <d>])

SQL Examples

SELECT ROUND(3.14159, 2);

┌──────┐
 3.14  
└──────┘