0

我正在尝试从 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)

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

4

1 回答 1

0

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

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
于 2013-06-22T20:00:39.507 回答