3.表定义
基本形式:
create table 【if not exists】 表名 ( 字段列表 【,索引或约束列表】) 【表选项列表】;
或:
create table 【if not exists】 表名 (
字段1,
字段2,
....
【,索引或约束1
,索引或约束1
......】
)
【表选项1,表选项2,..... 】;
字段的定义
一个字段的定义形式为:
字段名 字段类型 【字段属性1 字段属性2 字段属性3 ...... 】
说明:
1,字段属性列表表示可以有多个字段属性,期间用 空格 隔开。
2,需要什么属性由具体数据需求决定
3,有如下属性可用:
a: auto_increment:自增长值,用于整数类型,而且必须是一个“key”(就下面2个)
b: primary key : 设置为主键,就是通过该字段的值,可以唯一确定一行数据;并且默认不为空
c: unique key: 唯一键,设定该字段的值是唯一的,不可重复的,但可以为空。
d: not null:设定为不为空
e: default 默认值:设定默认值,则如果插入数据时,该字段没有给值,就使用它。
f: comment ‘字段的说明文字’。
create table tab_shuxing(
id int auto_increment primary key,
user_name varchar(20) unique key not null comment '用户名',
user_pass char(32) comment '密码,使用md5加密',
age tinyint unsigned default 18 comment '年龄'
);