gpt4 book ai didi

mysql - SQL 不等于或等于运算符使用

转载 作者:行者123 更新时间:2023-11-29 17:01:43 25 4
gpt4 key购买 nike

我需要从下表中选择那些处于状态 5 而不是状态 4 的 Mac。 enter image description here

我使用了这个查询,

select mac from tableabc where state=5 and state !=4;

但结果与

相同

enter image description here

where state=5

最佳答案

一种方法使用条件聚合:

select mac
from tableabc
where state in (4, 5)
having min(state) = 5;

如果state的值不是“有序的”,那么您可以添加和min(state) = max(state)

关于mysql - SQL 不等于或等于运算符使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52178690/

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