提示invalid default value for 'sex'
MySQL是5.6.17版本
drop table if exists imooc_user;//imooc_user家单引号时运行错误,必须去除单引号,下面一样
create table imooc_user(
id int unsigned auto_increment key,
username varchar(20) not null unique,
passworld char(32) not null,
sex enum("男","女","保密") not null default "保密",
face varchar(50) not null,
regTime int unsigned not null
);
运行时提示:invalid default value for 'sex'(sex默认值错误)
我把双引号换成单引号还是提示同样的错误