我有这样的查询,很好地向我展示了哪个product.model重复:
SELECT product.model, product_description.name, COUNT( * ) AS Count
FROM product, product_description
WHERE product.product_id = product_description.product_id
GROUP BY product.model ORDER BY COUNT
HAVING Count >1
但是我不能强制此查询显示每个重复的product.model的product_description.name的内容,以比较product_description.name
我试图在这个结果上制作IN,但我得到的是'#1241 - 操作数应该包含1列'。知道如何进一步处理这个结果?
答案 0 :(得分:0)
您需要一个子查询来执行此操作:
select
p.model, pd.name
from
product as p, product_description as pd
where
p.product_id = pd.product_id
and p.model in (
select p.model
from product as p, product_description as pd
where p.product_id = pd.product_id
group by p.model having count(p.name)>1)
希望这有帮助
答案 1 :(得分:0)
根据您所需的结果,如果您想查看哪些型号在产品表中有多条记录,然后想要查看相关的产品说明,则可以使用GROUP_CONCAT
来合并您的说明。
SELECT p.model, group_concat(pd.name), COUNT( 1 ) AS Count
FROM product p
INNER JOIN product_description pd USING (product_Id)
GROUP BY p.model
HAVING COUNT(1) > 1
ORDER BY 3
还有其他方法可以在不同的行中返回,这取决于您的需求。