gpt4 book ai didi

MySQL-大小写条件错误

转载 作者:行者123 更新时间:2023-11-29 08:32:46 24 4
gpt4 key购买 nike

我在 MySQL 中遇到以下 Case 语句的问题:

CASE  
WHEN
((SUBSTRING_INDEX('Provider - Remote Client - North', '-', -2) = ('Provider - Remote Client - North')) then SUBSTRING_INDEX('Provider - Remote Client - North', '-', -1)
ELSE SUBSTRING_INDEX('Provider - Remote Client - North', '-', -2)
END CASE

我收到“意外”错误有人可以建议吗?!?谢谢

最佳答案

WHEN 中有一个括号,并且 END 之后有一个额外的 CASE:

CASE  
WHEN
SUBSTRING_INDEX('Provider - Remote Client - North', '-', -2) = 'Provider - Remote Client - North'
THEN SUBSTRING_INDEX('Provider - Remote Client - North', '-', -1)
ELSE SUBSTRING_INDEX('Provider - Remote Client - North', '-', -2)
END

关于MySQL-大小写条件错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16101971/

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