gpt4 book ai didi

mysql - 如何找到其他字段中数据独有的字段?

转载 作者:行者123 更新时间:2023-11-28 23:30:00 26 4
gpt4 key购买 nike

总而言之,我有一个结构类似于以下内容的数据库:


CustomerDatabase
ProductID | ProductName | CustomerID | Gender |
008100 | Laptop | 1 | Male |
008101 | Desktop | 2 | Female |
008100 | Laptop | 3 | Female |
008102 | Printer | 4 | Male |
008101 | Desktop | 5 | Female |

我可以运行什么语句来显示仅由特定性别而非其他性别购买的产品 ID?

示例结果如下:

ProductID | Gender | CustomerID|
008101 | Female | 2 |
008101 | Female | 5 |

因为产品“008101”只被女性而非男性购买。

提前致谢。

最佳答案

另一种方法是使用单个 MAX 来传递 MaleFemale 大的事实,所以如果最大值是 ,那就是唯一了。

select t.productid
from YourTable t
group by t.productid
having MAX(t.gender) = 'Female'

关于mysql - 如何找到其他字段中数据独有的字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37656687/

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