作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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/
现在我正在尝试实现 flash programming specification对于 PIC32MX。我正在使用 PIC32MX512L 和 PIC32MX512H。 PIC32MX512L最终必须
我是一名优秀的程序员,十分优秀!