任务9user表建表语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了任务9user表建表语句相关的知识,希望对你有一定的参考价值。
create table user( id int not null auto_increment primary key, username varchar(30) not null default ‘‘, pwd char(32) not null default ‘‘, email varchar(40) not null default ‘‘, status tinyint(1) not null default 1, sex enum(‘男‘, ‘女‘) not null default ‘男‘, info text not null default ‘‘, pic varchar(100) not null default ‘‘, createdTime int(10) not null default 0 )engine=myisam default charset=utf8;
以上是关于任务9user表建表语句的主要内容,如果未能解决你的问题,请参考以下文章