gpt4 book ai didi

mysql - 如何在mysql中获取左子串

转载 作者:行者123 更新时间:2023-11-29 01:21:19 26 4
gpt4 key购买 nike

这看起来很奇怪,但我找不到快速简单的方法来解决我的任务:

我有很多行具有不同的绝对路径,例如:

  • /application/themes/openbank/images/prettyPhoto/light_square/default_thumbnail.gif
  • /application/themes/openbank/images/default_thumbnail.png
  • /application/themes/openbank/images/prettyPhoto/light_square/a_s.pdf

我想把它们分开

  • parent_path(“例如/application/themes/openbank/images/prettyPhoto/light_square/”)
  • 文件名(“例如 default_thumbnail.gif”)

注意:文件名的长度和分隔符的数量是可变的。

SUBSTRING_INDEX('/application/themes/openbank/images/prettyPhoto/light_square/default_thumbnail.gif', '/', -1)

我正确地得到了文件名,但我找不到找回左边部分的方法。我尝试了 LEFT()、RIGHT() 和 all other mysql's string function没有成功

Linux

最佳答案

在下面尝试获取 parent_path

select reverse(substring(reverse('/application/themes/openbank/images/prettyPhoto/light_square/default_thumbnail.gif'),instr(reverse('/application/themes/openbank/images/prettyPhoto/light_square/default_thumbnail.gif'),'/')))

关于mysql - 如何在mysql中获取左子串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25691309/

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