gpt4 book ai didi

sql - 右外连接没有得到相同的结果不知道为什么 (=*)

转载 作者:搜寻专家 更新时间:2023-10-30 20:39:37 25 4
gpt4 key购买 nike

大家好,数据库外连接和内连接的所有新手都修改了下面的代码

FROM leaf_star_stem_bud, leaf_star_item, cosmic_tank 
WHERE leaf_star_stem_bud.power_company_key = '6aa5'
And leaf_star_item.parent_key = 'eaab1'
And cosmic_tank.master_key = leaf_star_item.cost_code_key
And leaf_star_stem_bud.parent_key =* leaf_star_item.master_key

FROM leaf_star_stem_bud 
RIGHT OUTER JOIN leaf_star_item ON
leaf_star_stem_bud.parent_key = leaf_star_item.master_key , cosmic_tank
WHERE leaf_star_stem_bud.power_company_key = '6aa5'
And leaf_star_item.parent_key = 'eaab1'
And cosmic_tank.master_key = leaf_star_item.cost_code_key

但是查询没有得到相同的结果,你能帮帮我吗

最佳答案

INNER JOINJOIN, :

  • 给我所有 leaf_star_stem_bud,其中有 leaf_star_item 与之关联。

RIGHT JOINRIGHT OUTER JOIN:

  • 给我所有 leaf_star_stem_bud,其中有 leaf_star_item 与之关联。
  • 如果还有更多 leaf_star_item,请给我它们并用 null 完成 leaf_star_stem_bud 信息。

LEFT JOINLEFT OUTER JOIN:

  • 给我所有 leaf_star_stem_bud,其中有 leaf_star_item 与之关联。
  • 如果还有更多 leaf_star_stem_bud,请给我它们并用 null 完成 leaf_star_item 信息。

更多信息:

What is the difference between Left, Right, Outer and Inner Joins?

http://en.wikipedia.org/wiki/Join_(SQL)

关于sql - 右外连接没有得到相同的结果不知道为什么 (=*),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25600083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com