SQL JOIN 關(guān)鍵字
sql join 關(guān)鍵字
sql join 用于把來自兩個或多個表的行結(jié)合起來。
下圖展示了 left join、right join、inner join、outer join 相關(guān)的 7 種用法。
1. sql join
sql join 子句用于把來自兩個或多個表的行結(jié)合起來,基于這些表之間的共同字段。
最常見的 join 類型:sql inner join(簡單的 join)。 sql inner join 從多個表中返回滿足 join 條件的所有行。
樣本數(shù)據(jù)庫
在本教程中,我們將使用 yapf 樣本數(shù)據(jù)庫。
下面是選自 "websites" 表的數(shù)據(jù):
+----+--------------+---------------------------+-------+---------+ | id | name | url | alexa | country | +----+--------------+---------------------------+-------+---------+ | 1 | google | https://www.google.cm/ | 1 | usa | | 2 | 淘寶 | https://www.taobao.com/ | 13 | cn | | 3 | 碩編程 | http://www.slktour.com/ | 4689 | cn | | 4 | 微博 | http://weibo.com/ | 20 | cn | | 5 | facebook | https://www.facebook.com/ | 3 | usa | | 7 | stackoverflow | http://stackoverflow.com/ | 0 | ind | +----+---------------+---------------------------+-------+---------+
下面是 "access_log" 網(wǎng)站訪問記錄表的數(shù)據(jù):
+-----+---------+-------+------------+ | aid | site_id | count | date | +-----+---------+-------+------------+ | 1 | 1 | 45 | 2016-05-10 | | 2 | 3 | 100 | 2016-05-13 | | 3 | 1 | 230 | 2016-05-14 | | 4 | 2 | 10 | 2016-05-14 | | 5 | 5 | 205 | 2016-05-14 | | 6 | 4 | 13 | 2016-05-15 | | 7 | 3 | 220 | 2016-05-15 | | 8 | 5 | 545 | 2016-05-16 | | 9 | 3 | 201 | 2016-05-17 | +-----+---------+-------+------------+
請注意,"websites" 表中的 "id" 列指向 "access_log" 表中的字段 "site_id"。上面這兩個表是通過 "site_id" 列聯(lián)系起來的。
然后,如果我們運行下面的 sql 語句(包含 inner join):
select websites.id, websites.name, access_log.count, access_log.date from websites inner join access_log on websites.id=access_log.site_id; 執(zhí)行結(jié)果: +----+------------+-------+------------+ | id | name | count | date | +----+------------+-------+------------+ | 1 | google | 45 | 2016-05-10 | | 1 | google | 230 | 2016-05-14 | | 2 | 淘寶 | 10 | 2016-05-14 | | 3 | 碩編程 | 100 | 2016-05-13 | | 3 | 碩編程 | 220 | 2016-05-15 | | 3 | 碩編程 | 201 | 2016-05-17 | | 4 | 微博 | 13 | 2016-05-15 | | 5 | facebook | 205 | 2016-05-14 | | 5 | facebook | 545 | 2016-05-16 | +----+------------+-------+-----------+
2. 不同的 sql join
在我們繼續(xù)講解范例之前,我們先列出您可以使用的不同的 sql join 類型:
- inner join:如果表中有至少一個匹配,則返回行
- left join:即使右表中沒有匹配,也從左表返回所有的行
- right join:即使左表中沒有匹配,也從右表返回所有的行
- full join:只要其中一個表中存在匹配,則返回行