Quantcast

::Geek Question:: need MySQL help

jacksonpt

Turbo Monkey
Jul 22, 2002
6,791
59
Vestal, NY
OK, this is stupid - this is sooo basic and I've done it a zillion times, but for some reason I can't create a simple table. What the hell am I missing here?

MySQL> CREATE TABLE registrations (
-------> regID INT(11) NOT NULL auto_increment,
-------> Title VARCHAR(255),
-------> PRIMARY KEY (regID)
-------> );
I'm sure it's something silly...
 

Velocity Girl

whack-a-mole
Sep 12, 2001
1,279
0
Atlanta
SpuTTer916 said:
The error is obvious for a dork like me.

You have a french bracket instead of a parenthesis... replace { with (
Damn, I guess that puts me into the category of "geek" as well....the mismatched parenthesis was the first thing I noticed!!! (Maybe being in QA has something to do with???? :think: )
 

jacksonpt

Turbo Monkey
Jul 22, 2002
6,791
59
Vestal, NY
crap... OK, now I feel like a real idiot. That brace was a typo when I started this thead. I am using parens throughout in my actual code.