gpt4 book ai didi

mysql - where子句中的sql语句条件

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

我在为以下 sql 查询创建 where 语句条件时遇到问题。

我希望添加一个 where 条件,如果 num1num2 值都等于零,或者其中任何一个也等于零

SELECT Num1, Num2
FROM Position
WHERE (Num1 IS NOT NULL AND Num2 IS > NOT NULL)
ORDER BY PositionDateTime DESC ;

结果:

    +---------+---------+
| Num1 | Num2 |
+---------+---------+
|
| 47.3941 | 8.68005 |
| 0 | 0 |
| 47.4385 | 8.61106 |
| 47.4385 | 8.61106 |

最佳答案

试试这个:

 SELECT Num1, Num2 
FROM Position
WHERE Num1 <> 0
OR Num2 <> 0
ORDER BY PositionDateTime DESC ;

关于mysql - where子句中的sql语句条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47788868/

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