这个问题已经在这里有了答案:




9年前关闭。






多年来,使用Oracle一直使我有些受宠若惊。现在,我正在使用mysql,在MySQL中找不到外部连接的非ansi版本/简写版本。

在甲骨文,我可以做到这一点

select a.country acountry,
        a.stateProvince aStateProvince,
        b.countryName bcountry,
        b.name bstateProvince
  from User a,
          stateprovince b
  where a.country*=b.countryName **(+)**
          and a.stateProvince*=b.name **(+)**

获得外部连接。 mysql可以做类似的事情吗?

最佳答案

比这更简单:

select a.country acountry,
        a.stateProvince aStateProvince,
        b.countryName bcountry,
        b.name bstateProvince
  from User a
        left join
          stateprovince b
    on  a.country = b.countryName
          and a.stateProvince = b.name

不。

09-28 04:21