Good morning to all of you, today I am trying to round a value of FLOAT to two decimals but doing so by consulting SQL SERVER shown below, some values rounded me correctly and others not, example: 19.1 I rounded to 19.10 already with the two digits and 18.4 me it shows it as 18.39 they know what they should or know a better method of doing it, again thanks to all for their help.
SELECT CAST(ROUND(tc_precio, 2, 1) AS DECIMAL (18, 2)) FROM Tipo_Cambio