This article is tagged with:
Sql limit decimal places
and mysql
sql limit decimal places
SELECT CAST(ROUND(125.025000, 2) AS NUMERIC(36,2))
returns: 125.03
SQL 2 round
SELECT ROUND(235.415, 2) AS RoundValue;