温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

mysql分号分割开字段。拆分

发布时间:2020-07-10 11:12:05 来源:网络 阅读:1462 作者:寒月谷 栏目:MySQL数据库

问题-: mysql如何进行以,分割的字符串的拆分
分割开逗号 分号的字段。其他字段自动补齐。

https://blog.csdn.net/u012009613/article/details/52770567


 SELECT s.* from (
SELECT t.ID,t.time_old,
    substring_index( substring_index( t.all_content, ';', b.help_topic_id + 1 ), ';', -1 ) content_split
-- t.* 
FROM
    excel_lvli t
    JOIN mysql.help_topic b ON b.help_topic_id < ( LENGTH( t.all_content ) - LENGTH( REPLACE ( t.all_content, ';', '' ) ) + 1 )
and t.all_content like '%;%'
and t.all_content like '%画了许多%' 
) s 
WHERE  LENGTH(s.content_split) >0 ;

SELECT
    substring_index( substring_index( t.context, ',', b.help_topic_id + 1 ), ',', - 1 ) 
FROM
    test.test t
    JOIN mysql.help_topic b ON b.help_topic_id < ( LENGTH( t.context ) - LENGTH( REPLACE ( t.context, ',', '' ) ) + 1 );

实现出来的效果。 :

mysql分号分割开字段。拆分

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI