MySql-约束

create table user
(
    id     int primary key auto_increment,
    name   varchar(10) not null unique,
    age    int check ( age > 0 && age <= 120 ),
    status char(1) default '1',
    gender char(1)
) comment '用户表';

外键约束

用来让两张表的数据之间建立连接,从而保证数据的一致性和完整性

语法

create table xx(

...

..

[constrant][外键名称] foreign key(外键字段名) references 主表(主表列明)

)

alter table 表名 add constrant 外键名称 foreign key (外键字段名) references 主表(主表列明)

alter table dropforeign key

你可能感兴趣的:(mysql,数据库)