gpt4 book ai didi

mysql - 如果我有两个 substring_index,哪个先执行?

转载 作者:行者123 更新时间:2023-11-30 21:32:11 25 4
gpt4 key购买 nike

如果我有两个 substring_index,哪个先执行?内部一个 substring_index(mycol,'/',3),还是外部一个?

substring_index(substring_index(`mycol`,'/',3),'://',-1)

我想治疗的蜇伤示例:

https://www.yahoo.com/
http://google.com/en/

我想得到:

www.yahoo.com
google.com

1) 哪个substring_index 先被执行?根据首先执行的输出构造第二个 substring_index 很重要。

2) 我的 substring_index 语句是否正确?

最佳答案

Asu 你可以轻松检查

select substring_index(substring_index('https://www.yahoo.com/','/',3),'://',-1);

www.yahoo.com

select substring_index(substring_index('http://google.com/en/','/',3),'://',-1);

google.cn

对于每个嵌套函数,总是执行内部函数 .. 并重新执行下一个外部函数

关于mysql - 如果我有两个 substring_index,哪个先执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55664185/

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