关于oracle的sql 联结查询natural 和 full outer

 SELECT l.location_id,l.street_address,l.city,l.state_province,c.country_name
FROM locations l   FULL OUTER JONIN country c
ON c.country_id = l.country_id
ORDER BY l.location_id
  SELECT l.location_id,l.street_address,l.city,l.state_province,c.country_name
FROM locations l  NATURAL JONIN country c
ORDER BY l.location_id

这两个sql语句的查询结果是不一样的,
natural join 的结果比 full outer join 的结果少 并且 natural join的查询结果里面也有某些项为空

有人能解释下为什么吗。

PS: 所用数据库……看起来是oracle自带的,也不知道是不是因为我的版本的问题

补图

full outer join图片说明

natural join 图片说明

卧槽…………第一次用图片 不知道在哪写备注

第一张是full outer join

第二张是natural join