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