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. Quote Link to comment 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.... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.