0

当我尝试在 MySQL 5.5.24 中创建此列时出现语法错误:

`count` mediumint unsigned not null default=0

怎么了?

4

1 回答 1

4

从 中删除=标志default = 0

http://sqlfiddle.com/#!2/55533

CREATE TABLE Table1 (
  `count` mediumint unsigned not null default 0
);

请参阅文档:http ://dev.mysql.com/doc/refman/5.5/en/create-table.html

column_definition:
    data_type [NOT NULL | NULL] [DEFAULT default_value]
    ...
于 2012-07-08T17:00:20.397 回答