mysql约束

约束类型

  1、 NOT NULL 约束

      该约束用于指定列不能为NULL,当插入数据时,必须要为NOT NULL列提供数据。

  2、 唯一约束

    唯一约束用于指定列的数据不能重复。

    注意:唯一约束列可以为NULL

 当指定唯一约束时,系统会自动基于唯一约束列建立索引

 3、 主键约束

  主键约束用于唯一标识表行的数据。当指定了主键约束之后,主键约束列值不能重复,并且主键约束列值不能为NULL.

  注意:当指定主键约束时,系统会自动基于主键列建立索引

  一张表只能有一个主键约束

  4、 外部键约束

  外部键约束用于定义两张表之间的关系,外部键列数据必须在主键列中存在,或者为NULL.

 5、 检查约束

  检查约束用于强制列值必须满足的条件。

注意:MySql中只有主键才能定义为 auto_increment 型

 

create table company
(
   company_id smallint not null,
   company_name varchar(10)  not null,
   primary key(company_id)
);

方式一:在创建表的时候同时创建约束

create table person
(
   id  smallint not null auto_increment,
   name varchar(10) not null,
   company_id smallint,
   //主键约束
   primary key(id),      
   //唯一约束,也可以指定约束的名称: unique  key constraint_name (name),     
   unique  key(name),   
   //外键约束,也可以指定约束的名称:constraint constraint_name foreign key(company_id) references company(company_id) 
   constraint foreign key tb_person_fk(company_id) references company(company_id)
)

方式二:创建表以后,再创建约束

create table person
(
   id  smallint not null,
   name varchar(10) not null,
   company_id smallint
)

//创建主键约束

(1)alter able person add primary key(id);
(2)alter table person add constraint primary_k primary key(id);
再将主键列设为auto_increment:

alter table person modify id smallint auto_increment;

//删除主键约束

alter table person drop primary key;

删除主键约束的时候,如果主键已经是auto_increment型,则无法删除,因为只有主键才能是auto_increment型的

约束名称可以用 show create tabletable_name命令查看 

//查看约束

SHOW CREATE TABLE tb_emp;

// 创建外键约束

(1)alter table person  add  foreign  key(company_id)  references company(company_id);
(2)alter table person  add  constraint  foreing_k  foreign key(company_id) references company(company_id);

创建外键约束以后,系统自动为外键列创建了一个key,名称可以用show create table table_name查看

用下面的方式删除外键约束后,这个key仍然存在。                                

//删除外键约束

alter table person  drop  foreign key  foreign_k;

//创建唯一约束

(1)alter table person add  unique key(name);
(2)alter table person add  constraint  unique_k unique  key(name);

//删除唯一约束索引

因为创建unique约束后,系统会自动给此列创建索引,用show create table table_name查看索引名称

alter table person drop index name;
约束实例:
# check 约束在mysql中不起作用
CREATE TABLE `tb_emp` (
  `id` INT(11) PRIMARY KEY AUTO_INCREMENT,     #主键,自动增长
  `name` VARCHAR(8) NOT NULL,     # not null, 定义的字段插入值时不能为空。
  `sex` VARCHAR(2) DEFAULT NULL CHECK(sex='男' OR sex='女'),
  `age` INT(11) DEFAULT NULL CHECK(age>18 AND age<50),
  `address` VARCHAR(200) DEFAULT NULL,
  `email` VARCHAR(100) UNIQUE,     # 邮箱,唯一约束,如果插入值,不能出现另一行的Email和当前航的email相同。
  # 数据冗余 部门三个字段占0.00001kb,那如果1W个员工,则会占据1KB,且在查询数据库的时候,会降低查询效率
  # 解决数据冗余的方法,通过一个字段就可以查询到其他相关信息
  # tb_emp里面的dept_id字段引用自tb_dept表,如果部门表里面没有id为3的部门,则这个字段的值不能为3
  # 当tb_emp表里面有dept_id为3的数据,就不能删除tb_dept表里面id为3的记录,因为有关引用
  # 外键参照的只能是主表tb_dept主键或者唯一键。
  dept_id INT REFERENCES tb_dept(id) # 部门名称
) ENGINE=INNODB DEFAULT CHARSET=utf8;

# mysql 中的外键
DROP TABLE IF EXISTS `tb_emp`;
CREATE TABLE `tb_emp` (
  `id` INT(11) PRIMARY KEY AUTO_INCREMENT,     #主键,自动增长
  `name` VARCHAR(8) NOT NULL,     # not null, 定义的字段插入值时不能为空。
  `sex` VARCHAR(2) DEFAULT NULL CHECK(sex='男' OR sex='女'),
  `age` INT(11) DEFAULT NULL CHECK(age>18 AND age<50),
  `address` VARCHAR(200) DEFAULT NULL,
  `email` VARCHAR(100) UNIQUE,     # 邮箱,唯一约束,如果插入值,不能出现另一行的Email和当前航的email相同。
  dept_id INT,
  # 定义外键
  CONSTRAINT FOREIGN KEY tb_emp_fk(dept_id) REFERENCES tb_dept(id)
) ENGINE=INNODB DEFAULT CHARSET=utf8;

转载于:https://www.cnblogs.com/hehe520/p/6330041.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值