Hello,
I have an ID column at the beginning of my table. I want to edit it so that it's auto_increment and can support numbers up to 5 characters.
The code phpMyAdmin tried to execute--
=============
SQL query:
ALTER TABLE books CHANGE id id INT( 11 ) NOT NULL DEFAULT '1' AUTO_INCREMENT
MySQL said: Documentation
#1067 - Invalid default value for 'id'
So I set the default value to 0 but I again get the same error...
Any ideas?