Jump to content

New Table Problem


colinhanke

Recommended Posts

This is my first Mysql table attempt so it may be an easy or dumb fix but here we anyways. I am trying to create a table in phpmyadmin. I filled out the first portion that I need and it gave me this error:

"#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.'36-40','41-45','46-50','51-55','56-60','61-65','66-70','71-75','76-80','81-85'' at line 1"

Here is the code that phpmyadmin used to query mysql:

CREATE TABLE `mktsurvey` (
`UI` VARCHAR( 20 ) NOT NULL ,
`Zip` CHAR( 10 ) NOT NULL ,
`Age` ENUM( '18-24', '25-30', '31-35'. '36-40', '41-45', '46-50', '51-55', '56-60', '61-65', '66-70', '71-75', '76-80', '81-85', '86-90', '91-95', '96-100', ) NOT NULL ,
`Children` ENUM( 'Yes', 'No' ) NOT NULL ,
`Online_hrs` ENUM( '0-1', '2-5', '6-10', '11-15', '+15' ) NOT NULL ,
`site_cool` ENUM( 'Yes', 'No' ) NOT NULL ,
`site_features` VARCHAR( 255 ) NOT NULL ,
`buy_child_online` ENUM( 'Yes', 'No' ) NOT NULL ,
`times_buy_chile_online` ENUM( '0-1', '2-5', '6-10', '11-15', '+15' ) NOT NULL ,
`myspace` ENUM( 'Yes', 'No' ) NOT NULL ,
`online_local_resources` ENUM( 'Never', 'A Little', 'Often', 'All the Time' ) NOT NULL ,
`partic_online_network` ENUM( 'Yes', 'No' ) NOT NULL ,
`partic_online_network_why` VARCHAR( 255 ) NOT NULL ,
`prize_want` VARCHAR( 255 ) NOT NULL ,
`stay_update` ENUM( 'Yes', 'No' ) NOT NULL ,
`lm_partic` ENUM( 'Yes', 'No' ) NOT NULL ,
`email` VARCHAR( 255 ) NOT NULL ,
`ip` VARCHAR( 20 ) NOT NULL ,
PRIMARY KEY ( `UI` )
) ENGINE = MYISAM

any comments or quesitions would be greatly appreciated. Thanks.
Link to comment
https://forums.phpfreaks.com/topic/12897-new-table-problem/
Share on other sites

[!--quoteo(post=387909:date=Jun 25 2006, 10:35 PM:name=c_hanke)--][div class=\'quotetop\']QUOTE(c_hanke @ Jun 25 2006, 10:35 PM) [snapback]387909[/snapback][/div][div class=\'quotemain\'][!--quotec--]
[code]`Age` ENUM( '18-24', '25-30', '31-35'. '36-40', '41-45', '46-50', '51-55', '56-60', '61-65', '66-70', '71-75', '76-80', '81-85', '86-90', '91-95', '96-100', ) NOT NULL ,[/code][/quote]
Remove the trailing comma inside the parens, and you'll probably be fine.
Link to comment
https://forums.phpfreaks.com/topic/12897-new-table-problem/#findComment-49553
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.