gpt4 book ai didi

php - 如何从包含一组重复值(clm1、clm2、cl3)的表中选择 id?

转载 作者:行者123 更新时间:2023-11-29 02:56:49 25 4
gpt4 key购买 nike

如何选择包含重复值(product_id、place_id、product_type_id)的id=32和28?请帮助我提前谢谢..

id        product_id   place_id    product_type_id  quaty       year      month
22 3 2 1 10 2015 4
28 6 1 3 10 2015 4
32 6 1 3 15 2015 5
33 11 3 6 100 2015 5
27 30 1 3 13 2015 4

最佳答案

试试这个:

SELECT id
FROM table1 AS t1
WHERE product_id IN(SELECT product_id
FROM table1 AS t2
GROUP BY product_id,place_id,product_type_id
HAVING COUNT(id) > 1);

这会给你:

| id |
|----|
| 28 |
| 32 |

关于php - 如何从包含一组重复值(clm1、clm2、cl3)的表中选择 id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29933461/

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