Apache Presto - Funzione matematica round (x)
Query
presto:default> select round(5.9) as round_value;
Risultato
round_value
-------------
6.0
L'output viene quindi arrotondato.
presto:default> select round(5.9) as round_value;
round_value
-------------
6.0
L'output viene quindi arrotondato.