I've got the table with auto_increment ID column and i want to add another column, which would has copied numbers from ID column ( for example named copied_ID), so i want to have two the same colmuns, one of them auto_increment. before_photo I've tried:
insert into my_table (copied_ID) select ID from my_table;
But then i've got: after_photo