create table if not exists upload_log(
up_log_id int(10) AUTO_INCREMENT NOT NULL,
client_ip varchar(40) NOT NULL COMMENT ' client_ip',
upload_time datetime NOT NULL COMMENT '0000-00-00 00:00:00' COMMENT 'client time',
user_no int(8) NOT NULL COMMENT '',
login_no int(10) NOT NULL COMMIT '',....创建表 失败   但是把login_no int(10) NOT NULL,  的commit 去掉就可以创建成功
这是什么原因呢   上面的int都可以写描述。。为什么这个加了就提示[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COMMIT '',
-- up_file_name varchar(250) not null COMMIT 'client name',