Octavian Rasnita wrote:
> Hi all,
> 
> I've tried the following SQL line in MySQL 4.05 for Windows and it told me
> that there is an error starting from "unsigned...".
> 
> mysql> create table aaa(id int not null unsigned, name text);
> 
> Can you tell me why doesn't it work?
> 

Sure ! Your syntax is wrong. It should be:
create table aaa(id int unsigned not null, name text);

Please see the manual for more details:
http://www.mysql.com/doc/en/CREATE_TABLE.html

> Thank you.
> 
> Teddy,
> Teddy's Center: http://teddy.fcc.ro/
> Email: [EMAIL PROTECTED]
> 
Regards,
Joseph Bueno


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