I would like to change the column type to AUTO_INCREMENT within an existing MyISAM1 database table. The databse currently has thousands of records
AUTO_INCREMENT
MyISAM1
You are using wrong syntax, try below command-
ALTER TABLE `myTable` CHANGE `myCol1` `myCol1` INT(11) NOT NULL AUTO_INCREMENT, auto_increment=2500;