I have the following table:
CREATE TABLE entries (id INT(10000) UNSIGNED AUTO_INCREMENT PRIMARY KEY, firstName VARCHAR(60), surname VARCHAR(60), course VARCHAR(250), subject VARCHAR(500), level VARCHAR(10), dateTime DATETIME);
But i'm getting the following error:
ERROR 1439 (42000): Display width out of range for column 'id' (max = 255)
Any reason why the maximum is 255? I thought the maximum was 4294967295?
Any ideas?