mysql 内连接查询三表数据_数据库三表连接查询怎么做

展开全部

1、创建三张测试表;

create table test_a(aid int,aname varchar(20));

create table test_b(bid int,bname varchar(20));

create table test_c(aid int, bid int,value varchar(20));

6d3d94602c24d1759fa671ebe870f656.png

2、三张表e69da5e887aa3231313335323631343130323136353331333431376533中分别插入数据;

insert into test_a values(1, 'aname1');

insert into test_b values(2, 'bname1');

insert into test_c values(1, 2, 'cvalue');

41868155f549dc208db0b9b566b654d2.png

3、查询表中记录;

select 10, a.* from test_a a

union all

select 20, b.* from test_b b

union all

select * from test_c c;

8fc1a38817460ba6322800537dbd0dfc.png

4、编写sql,进行三表关联;

select a.aname,b.bname,c.value

from test_c c join test_a a

on c.aid = a.aid

join test_b b

on c.bid = b.bid

41637778746b2a568a78a81ca0c9ede0.png

  • 5
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值