Math Numeric Functions MySQL Tutorial

mysql>
mysql> SELECT ROUND(150.000,2), ROUND(150,2);
+------------------+--------------+
| ROUND(150.000,2) | ROUND(150,2) |
+------------------+--------------+
|           150.00 |       150.00 |
+------------------+--------------+
1 row in set (0.01 sec)
mysql>