任务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表建表语句的主要内容,如果未能解决你的问题,请参考以下文章

常用SQL语句DDL建表建索引建序列(PGSQL)

常用SQL语句常见建表建索引等DDL语句(PGSQL)

获取MySQL中某个数据库下所有表建表语句的DDL

SQL语法精讲(包括建库建表建视图查询增加删除)

mysql建表建索引

hive表建表