I have about 1000 lines and I want to increase all line IDs by 1. I thought something like this might work
UPDATE table
SET id = id+1
I tried in phpMyAdmin but got this: Duplicate entry "2" for key "PRIMARY"
It makes sense, but how can I get around this?
source share