Wiley,

mysql>> CREATE TABLE info
>     -> (
>     -> name varchar(50)
>     -> message varchar(255)
>     -> )
>     -> ;

It's a missing comma:

mysql>> CREATE TABLE info
>     -> (
>     -> name varchar(50), /* the comma goes here */
>     -> message varchar(255)
>     -> )
>     -> ;


Regards,
--
  Stefan Hinz <[EMAIL PROTECTED]>
  iConnect GmbH <http://iConnect.de>
  Heesestr. 6, 12169 Berlin (Germany)
  Telefon: +49 30 7970948-0  Fax: +49 30 7970948-3


---------------------------------------------------------------------
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

Reply via email to