I have columns being stored in a table as the regular pecent significant figures as floats.(e.g 99.9) I would like to divide them by 100 so they are in they are in raw data form. (e.g) .999
What is the query I would have to write for this ?
I’ve tried this and nothing seems to change.
UPDATE table_name SET column_name=[value/100]
update table_name set column_name = column_name / 100;