gpt4 book ai didi

mysql - 如果MySQL中没有配对,如何从连接表中进行选择

转载 作者:行者123 更新时间:2023-11-29 21:12:24 25 4
gpt4 key购买 nike

我有表product(1910行),其中包含idname字段。然后我有表 image (1000 行),其中包含 productIdvalue 字段。

如何列出所有带有图片的产品?如果我使用左连接,那么我将只得到 1000 行,而没有没有图像的产品。

最佳答案

这应该完成你的工作:

Select p.name, i.value from product as p LEFT OUTER JOIN image as i on p.id = i.productID

您将获得表 1 中的所有内容以及表 2 中的图像

关于mysql - 如果MySQL中没有配对,如何从连接表中进行选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36251949/

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