某些故障码表出于历史原因或性能原因,都使用了如下的设计模式。即同一个行或列中存储了多个属性值。如下表中的 tonly_error_record 所示:
这种情况下,可以考虑将该列根据分号“;”先进行分割,形成多个行,然后再根据逗号“,”形成多个列。如下表所示:
可以使用mysql中的字符串拆分函数实现,函数说明如下:
substring_index(str,delim,count) -- str: 被分割的字符串; delim: 分隔符; count: 分割符出现的次数
最后,具体实现如下:
#第一步:根据分号“;”分割为多行 #第二步:根据逗号“,”分割为多列 select distinct s1.tbox_vin, (select substring_index(substring_index(s1.error_code, ',', 1), ',', -1)) as spn, (select substring_index(substring_index(s1.error_code, ',', 2), ',', -1)) fmi, s1.modify_time from ( select t1.tbox_vin, substring_index(substring_index(t1.dm1_string, ';', t2.help_topic_id + 1), ';', -1) as error_code, t1.modify_time from tonly_error_record t1 join mysql.help_topic t2 on t2.help_topic_id < (length(t1.dm1_string) - length(replace(t1.dm1_string, ';', '')) + 1) where t1.dm1_string is not null and t1.dm1_string != '') s1 where s1.error_code != '' and s1.error_code is not null order by s1.modify_time desc;
涉及的知识点
一、字符串拆分: substring_index(str, delim, count)
1. 参数解说
参数名 | 解释 |
---|---|
str | 需要拆分的字符串 |
delim | 分隔符,通过某字符进行拆分 |
count | 当 count 为正数,取第 n 个分隔符之前的所有字符; 当 count 为负数,取倒数第 n 个分隔符之后的所有字符。 |
2. 举例
(1)获取第2个以“,”逗号为分隔符之前的所有字符。
substring_index('7654,7698,7782,7788',',',2)
(2)获取倒数第2个以“,”逗号分隔符之后的所有字符
substring_index('7654,7698,7782,7788',',',-2)
二、替换函数:replace( str, from_str, to_str)
1. 参数解说
参数名 | 解释 |
---|---|
str | 需要进行替换的字符串 |
from_str | 需要被替换的字符串 |
to_str | 需要替换的字符串 |
2. 举例
(1)将分隔符“,”逗号替换为“”空。
replace('7654,7698,7782,7788',',','')
三、获取字符串长度:length( str )
1. 参数解说
参数名 | 解释 |
---|---|
str | 需要进行替换的字符串 |
from_str | 需要被替换的字符串 |
to_str | 需要替换的字符串 |
2. 举例
(1)获取 ‘7654,7698,7782,7788′ 字符串的长度
length('7654,7698,7782,7788')
实现的sql解析
select substring_index(substring_index('7654,7698,7782,7788',',',help_topic_id+1),',',-1) as num from mysql.help_topic where help_topic_id < length('7654,7698,7782,7788')-length(replace('7654,7698,7782,7788',',',''))+1
此处利用 mysql 库的 help_topic 表的 help_topic_id 来作为变量,因为 help_topic_id 是自增的,当然也可以用其他表的自增字段辅助。
help_topic 表:
实现步骤:
step1:首先获取最后需被拆分成多少个字符串,利用 help_topic_id 来模拟遍历 第n个字符串。
涉及的代码片段:
help_topic_id < length('7654,7698,7782,7788')-length(replace('7654,7698,7782,7788',',',''))+1
step2:根据“,”逗号来拆分字符串,此处利用 substring_index(str, delim, count) 函数,最后把结果赋值给 num 字段。
涉及的代码片段:
substring_index(substring_index('7654,7698,7782,7788',',',help_topic_id+1),',',-1) as num
第一步:
以”,”逗号为分隔符,根据 help_topic_id 的值来截取第n+1个分隔符之前所有的字符串。 (此处 n+1 是因为help_topic_id 是从0开始算起,而此处需从第1个分隔符开始获取。)
substring_index('7654,7698,7782,7788',',',help_topic_id+1)
eg:
当 help_topic_id = 0时,获取到的字符串 = 7654
当 help_topic_id = 1时,获取到的字符串 = 7654,7698
…(以此类推)
第二步:
以”,”逗号为分隔符,截取倒数第1个分隔符之后的所有字符串。
substring_index(substring_index('7654,7698,7782,7788',',',help_topic_id+1),',',-1)
eg:
根据第一步,当 help_topic_id = 0时,获取到的字符串 = 7654,此时第二步截取的字符串 = 7654
根据第一步,当 help_topic_id = 1时,获取到的字符串 = 7654,7698,此时第二步截取的字符串 = 7698
…(以此类推)
最终成功实现了以下效果 ~
注:不含分隔符的字符串拆分可参考 mysql——字符串拆分(无分隔符的字符串截取)
到此这篇关于mysql按特定符号分割成多行和多列的示例的文章就介绍到这了,更多相关mysql特定符号分割内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!