gpt4 book ai didi

mysql - 带破折号的子字符串索引

转载 作者:行者123 更新时间:2023-11-29 06:55:52 25 4
gpt4 key购买 nike

我的表格中有这一行

enter image description here

我只想获得Mary Jane这个名字,但由于某种原因,我得到的名字是Mary Jane-Jeyxa

Descriptn 是我的列名称

你能帮我解决这个问题吗? :c

这是我的查询:

  SELECT substring_index(substring_index(descriptn, ' ', -2), '-', -2) FROM `deposit`

最佳答案

substring_index(descriptn, '-', -2) 查询返回由 - 字符分割的最后 2 部分,因此: Mary JaneJeyxa

您可以做的就是再次将其拆分为 - 并选择第一部分:

substring_index(substring_index(descriptn, '-', -2), '-', 1)

关于mysql - 带破折号的子字符串索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45672034/

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