您好,登錄后才能下訂單哦!
本文主要給大家介紹MySQL表關聯的常用方式有哪幾種,文章內容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下MySQL表關聯的常用方式有哪幾種吧。
建表及插入數據,
CREATE TABLE school (
sch_id int(11) NOT NULL AUTO_INCREMENT,
sch_name varchar(50) NOT NULL,
sch_addr varchar(100) DEFAULT NULL,
PRIMARY KEY (sch_id)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
CREATE TABLE student (
st_id int(11) NOT NULL AUTO_INCREMENT,
st_name varchar(20) NOT NULL,
age smallint(6) DEFAULT NULL,
hight int(5) DEFAULT NULL,
sch_id int(11) DEFAULT NULL,
PRIMARY KEY (st_id),
KEY sch_id (sch_id)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ;
INSERT INTO school VALUES (1,'南開大學','南開'),(2,'中央財經大學','北京'),(3,'香港理工大學','香港'),(4,'西安交通大學','西安'),(5,'悉尼大學','悉尼'),(6,'曼徹斯特大學','曼徹斯特'),(8,'延安抗日軍政大學','延安');
INSERT INTO student VALUES (1,'王曉陽',26,168,6),(2,'王楠',28,162,2),(3,'楊振宇',30,178,1),(4,'苗昕',28,162,3),(5,'張詩雨',27,171,5),(8,'李倩',28,162,4),(9,'蔣結石',26,178,7);
1.左關聯:以左表為中心,查出左表的全部數據,關聯字段值不相等則右表查出的數據顯示為空;
select * from school a left join student b on a.sch_id=b.sch_id;
2.右關聯:以右表為中心,查出右表的全部數據,關聯字段值不相等則左表查出的數據顯示為空;
select * from school a right join student b on a.sch_id=b.sch_id;
3.內關聯:查出兩表關聯字段等值的數據
select * from school a inner join student b on a.sch_id=b.sch_id;
4.查出只屬于左表的數據
select * from school a left join student b on a.sch_id=b.sch_id where b.st_id is null;
5.查出只屬于右表的數據
select * from school a right join student b on a.sch_id=b.sch_id where a.sch_id is null;
6.查出全部數據
select from school a left join student b on a.sch_id=b.sch_id union select from school a right join student b on a.sch_id=b.sch_id;
7.查出左表和右表關聯不相等的數據
select from school a left join student b on a.sch_id=b.sch_id where b.st_id is null union select from school a right join student b on a.sch_id=b.sch_id where a.sch_id is null;
看完以上關于MySQL表關聯的常用方式有哪幾種,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業知識信息 ,可以持續關注我們的行業資訊欄目的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。