MySQL查询,三个表,外连接

时间:2016-04-07 11:55:32

标签: mysql

编辑:答案:

SELECT c.Name FROM Country c
WHERE NOT EXISTS 
( SELECT * FROM City 
JOIN Building ON City.CityID = Building.CityID 
WHERE City.CountryID = c.CountryID);

谢谢你们的时间。

我有这样的架构:

enter image description here

我做了这样的事情来选择所有没有建筑物的城市。

select * from City c 
  left join Building b on b.CityID = c.CityID
  where b.CityID is null or c.CityID is null
  union all
  select * from City c 
  right join Building b on b.CityID = c.CityID 
  where b.CityID is null or c.CityID is null;

如何选择没有建筑物的国家/地区的名称?

表格说明: enter image description here

  1. 数据示例:
  2. enter image description here

    2.预期产量: 英国

3 个答案:

答案 0 :(得分:1)

试试并告诉我

 select * from country where CountryID not in
 (select CountryID from country as c   join city as t on c.CountryID =t.CountryID join building as b on t.CityID = b.CityID )

答案 1 :(得分:0)

请考虑以下事项:

SELECT o.countryid
     , o.name country
     , i.cityID
     , i.name city
     , b.buildingid 
  FROM country o 
  LEFT 
  JOIN city i 
    ON i.countryid = o.countryid 
  LEFT 
  JOIN building b 
    ON b.cityid = i.cityid;
+-----------+---------+--------+-----------+------------+
| countryid | country | cityID | city      | buildingid |
+-----------+---------+--------+-----------+------------+
|         2 | England |      2 | London    |       NULL |
|         2 | England |      5 | Liverpool |       NULL |
|         4 | France  |      4 | Paris     |          5 |
|         3 | Germany |      3 | Berlin    |          3 |
|         3 | Germany |      3 | Berlin    |          4 |
|         1 | Poland  |      1 | Warsaw    |          1 |
|         1 | Poland  |      1 | Warsaw    |          2 |
+-----------+---------+--------+-----------+------------+

这个问题的最后部分留给读者练习。

答案 2 :(得分:-1)

SELECT Country.Name
FROM Country
JOIN City ON (Country.CountryID = City.CountryID)
WHERE City.CityID =
(SELECT City.CityID FROM City
JOIN Building
ON (City.CityID = Building.CityID)
WHERE City.CityID NOT IN Building.CityID)
相关问题