创建表--留言表msg
建MySQL数据表需要以下信息:
表名
表字段名
定义每个表字段
`字段名` 数据类型 数据属性
数据属性:
1. 无符号 unsigned(非负限定 ,即不能取负值) 取值范围 0–255;
2. 主键索引 primary key(唯一,一张表推荐一个主键) ;
3. 自增 auto_increment ;
4. 唯一索引 unique(唯一) 主要目的 : 避免数据重复 , 附带提高查询速度 ,缺点 : 占用磁盘空间 ;
5. 非空约束 not null (不能为空) ;
6. 默认值 default 值 注: 数据属性不写, 默认为 null;
7. 描述 comment '描述内容' 。
//留言表 create table msg( mid int(8) unsigned primary key auto_increment comment '留言id', title varchar(100) not null default '' comment '留言主题', content varchar(6666) not null default '' comment '留言内容', addtime datetime comment '留言时间', nickname varchar(45) not null default '' comment '昵称', state tinyint(1) unsigned not null default 0 comment '0未审 1已审 2屏蔽' )comment='留言表';
还没有留言,还不快点抢沙发?