mysql中外键的创建与删除

Posted To be better

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中外键的创建与删除相关的知识,希望对你有一定的参考价值。

外键的创建

 方法1:创建表的时候设置(外键名随机生成)

    1.前提条件,必须要有一个主表,这里设为persons

    2.主表中必须设置主键字段primary key,这里设为id_p

//创建数据库database(test)
create database if not exists test character set utf8;

//创建主表(persons)
create table if not exists persons(
    id_p int not null,
    lastName varchar(15) not null,
    firstName varchar(15) not null,
    address varchar(20) not null,
    city varchar(15) not null,
    primary key(id_p) //设置主键,这里必须要设置
);

//插入数据

 

//创建从表(orders)
create table if not exists orders(
    id_o int not null,
    orderNo int not null,
    id_p int not null,
    primary key(id_o),
    foreign key(id_p) references persons(id_p)  //设置外键,两个字段名id_p不需要一致,但是数据类型必须一致
);

//插入数据

  

方法2:创建外键名的方式设置

alter table orders add constraint fk_id foreign key(id_p) references persons(id_p);

  

 

 

外键的删除

1.先查出它的外键

show create table orders;
 

 2.删除外键

alter table orders drop foreign key order_ibfk_1;

 

  

以上是关于mysql中外键的创建与删除的主要内容,如果未能解决你的问题,请参考以下文章

Mysql中外键的 Cascade ,NO ACTION ,Restrict ,SET NULL

mysql中外键的一些基本操作

oracle中外键的作用

sql中外键怎么写?

oracle中外键的外键[关闭]

如何按照约定首先删除代码中外键字段的下划线