gpt4 book ai didi

sql - MySQL 中的子字符串

转载 作者:行者123 更新时间:2023-12-01 00:16:22 25 4
gpt4 key购买 nike

我想在 MySQL 表中插入一个字符串。但以下不是我要找的。

select substring_index('3|5|6|asdf asd|6|0|NULL', '|', 1) as first,
substring_index('3|5|6|asdf asd|6|0|NULL', '|', 2) as second,
substring_index('3|5|6|asdf asd|6|0|NULL', '|', 3) as third,
substring_index('3|5|6|asdf asd|6|0|NULL', '|', 4) as forth,
substring_index('3|5|6|asdf asd|6|0|NULL', '|', 5) as fifth

+-------+--------+-------+----------------+------------------+
| first | second | third | forth | fifth |
+-------+--------+-------+----------------+------------------+
| 3 | 3|5 | 3|5|6 | 3|5|6|asdf asd | 3|5|6|asdf asd|6 |
+-------+--------+-------+----------------+------------------

+

我想要 5 作为第二列,6 作为第三列,'asdf asd' 作为第四列。在 MySQL 中可以吗?

最佳答案

substring_index(substring_index('3|5|6|asdf asd|6|0|NULL', '|', 2), '|', -1)

给出 5

substring_index(substring_index('3|5|6|asdf asd|6|0|NULL', '|', 3), '|', -1)

给出 6

等等

关于sql - MySQL 中的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1617827/

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