I imported a very large file from CSV which did not have any primary key into a MySQL table. In PHPMyadmin I added another column to my table now, to create a primary key with autoincrement. The problem is that it is starting from 1.
I checked this question and found ALTER TABLE column AUTO_INCREMENT = 1000;
which will reset the autoincrement again to start from 1000, but is it possible to create an autoincrement from a particular number like 3456 for MySQL after creation of table and data entry?