|
This is the only solution I could readily think of.
Your original table:
"table1 ( name, value )"
make a new table with the new ID column set to auto_increment:
"table2 ( id, name, value)"
then run a select into table type query:
INSERT INTO table2 (name,value) SELECT * from table1
__________________
Your post count means nothing.
|