gpt4 book ai didi

mysql - 为什么我在这个 if 语句上遇到错误?

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

select if
(
(min(student_number)>1) or (max(student_number)<5500),'ok','Check Students'
)
from students;

最佳答案

您应该将 OR 替换为 AND:

select if
(
(min(student_number)>1) and (max(student_number)<5500),'ok','Check Students'
)
from students;

关于mysql - 为什么我在这个 if 语句上遇到错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11845975/

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