mysql如何把字符串拆成多行

mysql字符串拆成多行的方法:可以利用SUBSTRING_INDEX()函数来进行拆分,例如【substring_index(substring_index(a.chain,’_’,b.topic_id + 1)】。

mysql如何把字符串拆成多行

可以利用字符串截取函数SUBSTRING_INDEX来实现。

(推荐教程:mysql视频教程

语法:

SUBSTRING_INDEX(str, delimiter, count)

说明:

返回一个 str 的子字符串,在 delimiter 出现 count 次的位置截取。如果 count > 0,从则左边数起,且返回位置前的子串;如果 count

delimiter 是大小写敏感,且是多字节安全的。

举例:

SELECT     substring_index(substring_index(a.chain,'_',b.help_topic_id + 1),'_' ,- 1)AS ID FROM     (select '1_11_1223_1242' as chain) a   JOIN mysql.help_topic b ON b.help_topic_id <p>执行结果:<br></p><p><img src="https://img.php.cn/upload/image/635/512/634/1601193722404440.png" title="1601193722404440.png" alt="480427f4e4a03b3ece341e5b20b18f8.png"></p><p>相关推荐:<a href="https://www.php.cn/course/list/51.html" target="_blank">mysql视频教程</a></p>

以上就是

© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享