I have a column with data type decimal(10,2).
I want to increase all of the current values by 10%.
Thanks.
I have a column with data type decimal(10,2).
I want to increase all of the current values by 10%.
Thanks.
Something like this? For negative values, this makes data 10% smaller (further away from zero).
update table set data = data * 1.1;