----- Original Message -----
From: "Wileynet" <[EMAIL PROTECTED]>
Sent: Friday, February 07, 2003 6:52 PM
Subject: NEWBIE to mysql
> Can anyone tell me why I keep getting an ERROR 1064 with this command ?
> mysql> CREATE TABLE info
> -> (
> -> name varchar(50)
> -> message varchar(255)
> -> )
> -> ;
You must separate field definitions with commas. Should be
mysql> CREATE TABLE info
-> (
-> name varchar(50),
-> message varchar(255)
-> )
-> ;
Regards,
Bruce
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php