Last updated 4 months ago
The ROUND function rounds numbers to the nearest integer or decimal. ().
ROUND(number [ , integer ] )
This function is fully supported by .
SELECT 28.05 AS score, ROUND(28.05) AS round_score; SELECT 15.53969483712 AS comission, ROUND(15.53969483712, 2) AS round_comission;
28.05
28
15.53969483712
15.54
Output Code:
There are no known issues.