gpt4 book ai didi

mysql - 查找/选择具有重复属性的产品

转载 作者:太空宇宙 更新时间:2023-11-03 12:07:14 25 4
gpt4 key购买 nike

我有一个类似这样的表:

products_stock_id   products_id   products_stock_attributes   products_stock_quantity
11 65 1-3 3
12 65 1-8 4
13 65 1-10 3
14 66 1-8 0
15 66 1-3 1
16 66 1-8 7
17 66 1-12 6
18 66 1-13 21
19 67 1-7 12
20 68 1-8 0
21 68 1-10 7
21 69 1-3 3
22 69 1-8 4
23 69 1-10 3
24 69 1-8 0
25 69 1-3 1
26 70 1-8 7
27 71 1-12 6
28 71 1-13 2
29 72 1-7 11
30 72 1-8 10
31 72 1-14 6

我试图不止一次找到所有具有 1-8(在 products_stock_attributes 中)的 products_id。上表有 products_id 66 和 69,其中 1-8 出现不止一次。如何使用 MySQL 查询获取结果?

最佳答案

只需使用COUNT():

SELECT products_id
FROM yourtable
WHERE products_stock_attributes = '1-8'
GROUP BY products_id
HAVING COUNT(*) > 1

关于mysql - 查找/选择具有重复属性的产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25945010/

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