gpt4 book ai didi

mysql - 使用 mysql,查找具有 1 值但没有其他值的 ID 列表

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

enter image description here

在此表中,每个receipt_id都有多个status_code。如何提取状态代码为“A”但不是“B”的收据 ID 列表。

最佳答案

receipt_id 分组,并仅按分组选择符合您的条件的组

select receipt_id
from your_table
group by receipt_id
having sum(status_code = 'A') > 0
and sum(status_code = 'B') = 0

关于mysql - 使用 mysql,查找具有 1 值但没有其他值的 ID 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44087750/

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