CREATE TABLE `test`.`pictures` (
`id_picture` `id_picture` INT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`name_picture` VARCHAR( 256 ) NOT NULL ,
`type` ENUM( 'GIF', 'JPEG', 'TIFF' ) NOT NULL ,
`width` INT( 4 ) UNSIGNED NOT NULL ,
`height` INT( 4 ) UNSIGNED NOT NULL ,
`file` BLOB( 60 ) NOT NULL
) ENGINE = MYISAM ;
ошибку выдал.
#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key
Где у меня еще косяГ?