gpt4 book ai didi

Mysql查询不显示不相等值的行

转载 作者:行者123 更新时间:2023-11-29 08:35:41 27 4
gpt4 key购买 nike

我的 mysql 查询有一个小问题。我想仅显示顺序状态与 6 不同的行。但是id_order有多个雕像,这意味着例如:

id_order = 8421
**has two statuses:**
id_order_state=8 and
id_order_state = 6.

这是我的表格的示例:link

我尝试过:

SELECT * FROM order_history WHERE id_order_state != 6 (but here I need more code that I can't handle)

感谢您的帮助

编辑:订单 8421、8422 不应显示在结果中

最佳答案

尝试:

SELECT i.* FROM order_history i
left join order_history e
on i.id_order = e.id_order and e.id_order_state = 6
WHERE e.id_order_hitory is null

关于Mysql查询不显示不相等值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15292488/

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