Is there a way to alter the precision of an existing decimal column in Sql Server?
ALTER TABLE `tableName` CHANGE `columnName` DECIMAL(16,1) NOT NULL;
I uses This for the alterration