码迷,mamicode.com
首页 > 其他好文 > 详细

任务9user表建表语句

时间:2016-11-02 01:03:08      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:inf   prim   blog   not   sam   set   null   arch   engine   

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表建表语句

标签:inf   prim   blog   not   sam   set   null   arch   engine   

原文地址:http://www.cnblogs.com/htmlphp/p/6021138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!