Hey guys, I want to select a value and only return 2 places after the decimal.
I can do it but the problem is it rounds.
select CAST('10.454873' as decimal (10,2))
Returns 10.45 which is what I want.
But if I change the 3rd decimal value to 5 or higher it returns 10.46.
How can I return the exact 2 decimal places?