码迷,mamicode.com
首页 > 数据库 > 详细

mysql分号分割开字段。拆分

时间:2019-05-13 17:55:39      阅读:590      评论:0      收藏:0      [点我收藏+]

标签:tail   select   sel   index   and   details   like   _id   top   

问题-: 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分号分割开字段。拆分

标签:tail   select   sel   index   and   details   like   _id   top   

原文地址:https://blog.51cto.com/13000661/2393882

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!