I set up a database, with an auto incrementing column that was meant to be an ID. The problem is that I forgot to check off auto increment when creating the table in phpMyAdmin...and didn't notice until now! So what I have is something like:
ID | column one | column two
------------------------------------
0 | some value | some value
0 | other value | something else
0 | example val. | something
0 | my example | something
Basically, my "auto incrementing" column shows zeros across the board. How could I modify this table to show auto increment for all previous and all future rows?