I suppose that create table query with column decimal(12,2) means number with maximum 12 digits and 2 of that are decimal, right? When I use update statement on this column, like
"update table set 'x' = 'x' + 0.01 where.....""
I always get a number with 12 digits behind decimal . like, 0 = 0 + 0.01 result is 0.010000000001
which is not big problem for me but that 1 digit on the end is. Should I change my create table statement cause obviously that 12 number doesn't work right thing for me, thank you