使用enum创建性别字段时老是报错
使用enum创建性别字段时老是报错,来个高手指导
使用enum创建性别字段时老是报错,来个高手指导
2017-11-22
DROP TABLE IF EXISTS `imooc_user`;
CREATE TABLE `imooc_user`(
`id` int unsigned auto_increment key,
`username` varchar(20) not null unique,
`password` char(32) not null,
`sex` enum("男","女","保密") not null default "保密",
`face` varchar(50) not null,
`regTime` int unsigned not null
)charset='utf8';
在表末尾改utf8编码
举报