Удалить и начать с 1 первичного ключа MUYSQL

alter table yourTableName AUTO_INCREMENT=1; 
truncate table yourTableName; 

//After doing the above two steps, you will get the primary key beginning from 1
Splendid Salmon