gpt4 book ai didi

mysql - 为什么 mysql 求值 (TRUE or TRUE and FALSE) 为真?

转载 作者:可可西里 更新时间:2023-11-01 07:52:24 32 4
gpt4 key购买 nike

如果你输入

SELECT (true or true and false) 

在 mysql 中,它将返回 1,即 true。为什么呢? bool 表达式的求值顺序是什么?

最佳答案

根据 the MySQL documentation on operator precedence , AND 在 OR 之前求值。
这意味着您的表达式 (true OR true AND false) 被评估为 (true OR (true AND false))

关于mysql - 为什么 mysql 求值 (TRUE or TRUE and FALSE) 为真?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26385709/

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