"splicing MySQL id fields
was wondering if there is an easy way to splice id fields in such a way that if you have the fields:
ID
1
2
3
4
5
and you remove field 2, then 3,4 and 5 would become 2,3, and 4. In other words:
ID >> ID
1 >> 1
2 >> 2
3 >> 3
4 >> 4
5 >>
If you remove '2' from the first.
Thankyou for your help.
|