MySQL 字符串拆分操作(含分隔符的字符串截取)
题目要求
数据库中字段值:
实现效果:需要将一行数据变成多行
实现的sql
SELECT LEFT(SUBSTRING(’P1111’,help_topic_id+1),1) AS num FROM mysql.help_topic WHERE help_topic_id < LENGTH(’P1111’);涉及的知识点一、字符串截取:SUBSTRING(str,pos)
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 需要计算长度的字符串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里实现类似SPLIT的分割字符串的函数
下边的函数,实现了象数组一样去处理字符串。
一、用临时表作为数组create function f_split(@c varchar(2000),@split varchar(2))returns @t table(col varchar(20))asbeginwhile(charindex(@split,@c)<>0)begininsert @t(col) values (substring(@c,1,charindex(@split,@c)-1))set @c = stuff(@c,@c),’’)endinsert @t(col) values (@c)returnendgoselect * from dbo.f_split(’dfkd,dfdkdf,dfdkf,dffjk’,’,’)drop function f_splitcol--------------------dfkddfdkdfdfdkfdffjk
(所影响的行数为 4 行)
二、按指定符号分割字符串返回分割后的元素个数,方法很简单,就是看字符串中存在多少个分隔符号,然后再加一,就是要求的结果。
CREATE function Get_StrArrayLength(@str varchar(1024),--要分割的字符串@split varchar(10) --分隔符号)returns intasbegindeclare @location intdeclare @start intdeclare @length intset @str=ltrim(rtrim(@str))set @location=charindex(@split,@str)set @length=1while @location<>0beginset @start=@location+1set @location=charindex(@split,@str,@start)set @length=@length+1endreturn @lengthend
调用示例:
select dbo.Get_StrArrayLength(’78,2,3’,’)
返回值:4
三、按指定符号分割字符串返回分割后指定索引的第几个元素,象数组一样方便
CREATE function Get_StrArrayStrOfIndex(@str varchar(1024),--要分割的字符串@split varchar(10),--分隔符号@index int --取第几个元素)returns varchar(1024)asbegindeclare @location intdeclare @start intdeclare @next intdeclare @seed intset @str=ltrim(rtrim(@str))set @start=1set @next=1set @seed=len(@split)set @location=charindex(@split,@str)while @location<>0 and @index>@nextbeginset @start=@location+@seedset @location=charindex(@split,@start)set @next=@next+1endif @location =0 select @location =len(@str)+1--这儿存在两种情况:1、字符串不存在分隔符号 2、字符串中存在分隔符号,跳出while循环后,@location为0,那默认为字符串后边有一个分隔符号。return substring(@str,@start,@location-@start)end
调用示例:
select dbo.Get_StrArrayStrOfIndex(’8,9,4’,2)
返回值:9
四、结合上边两个函数,象数组一样遍历字符串中的元素declare @str varchar(50)set @str=’1,3,4,5’declare @next intset @next=1while @next<=dbo.Get_StrArrayLength(@str,’)beginprint dbo.Get_StrArrayStrOfIndex(@str,@next)set @next=@next+1end
调用结果:
1
2
3
4
5
以上为个人经验,希望能给大家一个参考,也希望大家多多支持好吧啦网。如有错误或未考虑完全的地方,望不吝赐教。
相关文章: