100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > mysql 内连接查询三表数据_数据库三表连接查询怎么做

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

时间:2020-03-12 00:53:08

相关推荐

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));

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

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

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

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

3、查询表中记录;

select 10, a.* from test_a a

union all

select 20, b.* from test_b b

union all

select * from test_c c;

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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。