I have a DB setup with two columns, ID
and VAL
.
ID
is an incrementing integer, starting from 1 and increasing by 1 for each row. VAL
is a simple string.
How can I update each row's ID
to be 10 times greater? E.g.:
ID 1, 2, 3
-> ID 10, 20, 30
Or is there a better method to adding a trailing zero to the end of every row in a column?