扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
创建数据库出错
在创建数据库时,出错,不知道哪里错了?源代码如下:
create database members default character set gb2312 collate gb2312_chinese_ci;
use members;
create table members(
userid int(10) unsigned NOT NULL auto_increment COMMENT'用户标识',
username varchar(20) not null comment'用户帐号',
password varchar(20) not null comment'密码',
gender set('男','女') not null comment'性别',
birthdate date not null default '0000-00-00' comment'出生日期',
question varchar(30) not null comment'安全问题,用于查询密码',
answer varchar(30) not null comment'答案',
email varchar(50) not null comment'电子邮件地址',
photopath varchar(50) default null comment'照片路径',
introduce varchar(300) default null comment'自我介绍',
role enum('0','1') not null default '0' comment'角色',
regtime datetime not null default '0000-00-00 00:00:00' comment'注册时间',
primary key('userid')
)ENGINE=InnoDB DEFAULT CHARSET=gb2312;
create table members(
userid int(10) unsigned NOT NULL auto_increment COMMENT '用户标识',
username varchar(20) not null comment '用户帐号',
password varchar(20) not null comment '密码',
gender set('男','女') not null comment '性别',
birthdate date not null default '0000-00-00' comment '出生日期',
question varchar(30) not null comment '安全问题,用于查询密码',
answer varchar(30) not null comment '答案',
email varchar(50) not null comment '电子邮件地址',
photopath varchar(50) default null comment '照片路径',
introduce varchar(300) default null comment '自我介绍',
role enum('0','1') not null default '0' comment '角色',
regtime datetime not null default '0000-00-00 00:00:00' comment '注册时间',
primary key (userid)
)ENGINE=InnoDB DEFAULT CHARSET=gb2312;
userid是一个字段,不是值不用加单引号
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者