Hello,
1. SELECT CAST((1.2435) AS DECIMAL (5,3)); result - 1.244
2. SELECT CAST((1.2445) AS DECIMAL (5,3)); result - 1.244
3. SELECT CAST((1.2455) AS DECIMAL (5,3)); result - 1.246
I expected the result of 2nd query to be 1.245 but it is not.
Please Explain.
↧