In article <[EMAIL PROTECTED]>,
Jonas Geiregat <[EMAIL PROTECTED]> writes:

mysql> create table foo (id int NOT NULL comment 'test foo en bar');

This is a comment on a column which apparently gets displayed by SHOW
CREATE TABLE only by later versions, e.g. 4.1.14.  Table comments go
after the closing parenthesis:

create table foo (id int NOT NULL) comment 'test foo en bar';


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to