mysql复合主键和联合主键的区别浅谈

149 篇文章 2 订阅

 

本文主要介绍了Mysql复合主键和联合主键的区别,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

复合主键:

1

2

3

4

5

6

7

8

create table index_test

(

    a int not null,

    b int not null,

    c int not null,

    d int null,

    primary key (c, a, b)

);

即一个表的主键同时由多个字段共同组成

联合主键:

1

2

3

4

5

6

create table index_test_a

(

    id int not null,

    a int not null

    primary key (id)

);

1

2

3

4

5

6

create table index_test_b

(

    id int not null,

    b int not null

    primary key (id)

);

1

2

3

4

5

6

7

create table index_test_a_b

(

    id int not null,

    a_id int not null,

    b_id int not null,

    primary key (id)

);

1

index_test_a_b表的id为表index_test_a和表index_test_b的联合主键,就是个逻辑概念

到此这篇关于Mysql复合主键和联合主键的区别的文章就介绍到这了,希望可以帮到你

转自:微点阅读   https://www.weidianyuedu.com 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值