gpt4 book ai didi

mysql - MySQL 中两个表之间的查询

转载 作者:行者123 更新时间:2023-11-30 01:32:48 25 4
gpt4 key购买 nike

我正在尝试从 mysql 中的 2 个表获取一些结果。

mysql 表的代码是

http://sqlfiddle.com/#!8/b643c/1

链接中是我所做的查询,以便我可以获得一些结果

是否有更好的方法来获得相同的结果?

select ProductID, ProductTitle from cms_products
where ProductID not in(select ProductID from cms_group_products
where gID = 1000)

我尝试了这个查询并得到了我想要的结果,但我只想知道查询是否正确。

最佳答案

我认为查询很好,但我会使用反连接。

SELECT cp.ProductID, ProductTitle
FROM cms_products cp
LEFT JOIN cms_group_products cgp ON (cp.ProductID = cgp.ProductID AND gID = 1000)
WHERE cgp.ProductID IS NULL

关于mysql - MySQL 中两个表之间的查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17254756/

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