I am using MS SQL server. I have varchar columns that I need to convert to NUMERIC(19,4). I am trying to cast and round the field, however in some instances it seems to truncate down to 4 decimal places, rather than properly round. Excample: 17.654593 needs to be 17.6546 rather than just dropping off the '93' from the end. I am using the below to update the entire field. Is there a way to add a 'round' to this script so it updates properly?
update table_name
SET price = case when isnull(price,'') <> ''
then CAST(CAST(price as FLOAT) as NUMERIC(19,4))
else 0
end
Problems
Solutions
SQL Server 2012 or later, resolves rounding issue, resolves unsafe cast to NUMERIC, and leaves NULL values as NULL:
SQL Server 2012 or later, resolves rounding issue, resolves unsafe cast to NUMERIC, sets NULL values to 0:
SQL Server 2008 or later, resolves rounding issue, resolves unsafe cast to NUMERIC, sets NULL values to 0:
If you want to stop NULLs from being converted into 0, simply remove the first when clause.