Apache Presto - Math Function round(x)



Query

presto:default> select round(5.9) as round_value; 

Result

 round_value 
------------- 
    6.0

The output is rounded as a result.

apache_presto_sql_functions.htm
Advertisements