码迷,mamicode.com
首页 > 数据库 > 详细

week9之user.sql

时间:2017-05-28 14:25:49      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:key   bsp   char   not   text   logs   engine   utf8   font   

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 ‘‘,
    createTime int(10) not null default 0
)engine=myisam default charset=utf8;
  

 

week9之user.sql

标签:key   bsp   char   not   text   logs   engine   utf8   font   

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

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