请问为什么一直提示默认值无效啊。。。。。。第一条语句执行没有问题,第二个语句执行就有问题了、、、、、、、、、、、、、
mysql> create table goods(
-> goods_id smallint unsigned not null primary key default null auto_increment,
-> goods_cate varchar(40) not null default null,
-> brand_name varchar(40) not null default null,
-> goods_price decimal(15,3) unsigned not null default 0.000,
-> is_show tinyint(1) not null default 1,
-> is_saleoff tinyint(1) not null default 0
-> );