 |
Truncate (not round) decimal places in SQL Server - Stack Overflow
I'm trying to determine the best way to truncate or drop extra decimal places in SQL without rounding. For example: declare @value decimal(18,2) set @value = 123.456 This will auto round @Valu... ... If you wanted to drop one of the decimal places from a
stackoverflow.com |
 |