mysql remove auto increment

Solutions on MaxInterview for mysql remove auto increment by the best coders in the world

showing results for - "mysql remove auto increment"
Carmela
01 Jun 2018
1ALTER TABLE mytable CHANGE my_col my_col INT(10) UNSIGNED NOT NULL
Andrés
16 Apr 2019
1set @autoid :=0; 
2update Table_Name set AutoIncremented_Column = @autoid := (@autoid+1);
3alter table Table_Name Auto_Increment = 1;
4
5@Zenonymous