set @autoid :=0; update Table_Name set AutoIncremented_Column = @autoid := (@autoid+1); alter table Table_Name Auto_Increment = 1; @Zenonymous
ALTER TABLE mytable CHANGE my_col my_col INT(10) UNSIGNED NOT NULL