russia5 Posted February 7, 2007 Share Posted February 7, 2007 Hello, Here is the code I have used to create my table: CREATE TABLE `Products` ( `product_name` VARCHAR( 12 ) NOT NULL AUTO_INCREMENT PRIMARY KEY , `profileid` INT( 10 ) NOT NULL , `profile_name` VARCHAR( 50 ) NOT NULL , `quantity` INT( 4 ) NOT NULL , `price` VARCHAR( 6, 2 ) NOT NULL ) TYPE = MYISAM Here is the error I am getting #1063 - Incorrect column specifier for column 'product_name' I tryed to change the name and that did nothing. I've played with the other attributes and just get more errors. Does anyone see what my error is? Thankyou for your time. Link to comment https://forums.phpfreaks.com/topic/37436-incrorrect-column-specifier/ Share on other sites More sharing options...
fenway Posted February 7, 2007 Share Posted February 7, 2007 I'm pretty sure you can't auto-increment a VARCHAR.... Link to comment https://forums.phpfreaks.com/topic/37436-incrorrect-column-specifier/#findComment-179211 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.