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
總結
以上是生活随笔為你收集整理的mysql 内连接查询三表数据_数据库三表连接查询怎么做的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 机器学习——图解SVM中gamma和c参
- 下一篇: 机器学习——深度学习之数据库和自编码器