I have a table called blocks
with a primary key blockid
. The data starts with a blockid
of 0. Now, the problem is that, in another table, the blockid's
start at 1. So, I need to get all of the blockid's
in blocks
to be incremented by 1.
How, do I do this?
Is there a convenient function to do this, or do we need to write one? Or, do I have to go and manually change it all (this wouldn't take too long, but there are more than 100 rows, so, I'd prefer it if I didn't have to do that).
Thanks for everything.