因为 RIGHT JOIN 的结果可以通过在 LEFT JOIN 中交换两个连接的表名来实现,所以很少使用 RIGHT JOIN。 一个RIGHT JOIN 查询看起来像这样: 代码语言:javascript 复制 SELECTcriteria_id,country_code,country_name,fips_codeFROMGoogle_Ads_GeoTargets gtRIGHTJOINCountry_Code ccONgt.country_code=cc.fips_code SELF...
因为 RIGHT JOIN 的结果可以通过在 LEFT JOIN 中交换两个连接的表名来实现,所以很少使用 RIGHT JOIN。 一个RIGHT JOIN 查询看起来像这样: SELECTcriteria_id,country_code,country_name,fips_codeFROMGoogle_Ads_GeoTargets gtRIGHTJOINCountry_Code ccONgt.country_code=cc.fips_code SELF JOIN 我们使用自连接来处...