這篇文章主要為大家詳細(xì)介紹了mysql 字符串拆分并分組,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,發(fā)現(xiàn)的小伙伴們可以參考一下:
南關(guān)網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)2013年開創(chuàng)至今到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。題目要求
數(shù)據(jù)庫中字段值:
實(shí)現(xiàn)效果:需要將一行數(shù)據(jù)變成多行
實(shí)現(xiàn)的sql
SELECT LEFT(SUBSTRING('P1111',help_topic_id+1),1) AS num FROM mysql.help_topic WHERE help_topic_id < LENGTH('P1111');
1、參數(shù)說明
參數(shù)名 | 解釋 |
---|---|
str | 需要拆分的字符串 |
delim | 分隔符,通過某字符進(jìn)行拆分 |
count | 當(dāng) count 為正數(shù),取第 n 個(gè)分隔符之前的所有字符; 當(dāng) count 為負(fù)數(shù),取倒數(shù)第 n 個(gè)分隔符之后的所有字符。 |
2、 舉例
(1)獲取第2個(gè)以“,”逗號(hào)為分隔符之前的所有字符。
SUBSTRING_INDEX('7654,7698,7782,7788',',',2)
(2)獲取倒數(shù)第2個(gè)以“,”逗號(hào)分隔符之后的所有字符
SUBSTRING_INDEX('7654,7698,7782,7788',',',-2)
1、參數(shù)解說
參數(shù)名 | 解釋 |
---|---|
str | 需要進(jìn)行替換的字符串 |
from_str | 需要被替換的字符串 |
to_str | 需要替換的字符串 |
2、 舉例
(1)將分隔符“,”逗號(hào)替換為“”空。
REPLACE('7654,7698,7782,7788',',','')
1、參數(shù)解說
參數(shù)名 | 解釋 |
---|---|
str | 需要計(jì)算長度的字符串 |
2、舉例
(1)獲取 ‘7654,7698,7782,7788' 字符串的長度
LENGTH('7654,7698,7782,7788')
實(shí)現(xiàn)的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 來作為變量,因?yàn)?help_topic_id 是自增的,當(dāng)然也可以用其他表的自增字段輔助。
help_topic 表:
實(shí)現(xiàn)步驟:
Step1:首先獲取最后需被拆分成多少個(gè)字符串,利用 help_topic_id 來模擬遍歷 第n個(gè)字符串。
涉及的代碼片段:
help_topic_id < LENGTH('7654,7698,7782,7788')-LENGTH(REPLACE('7654,7698,7782,7788',',',''))+1
Step2:根據(jù)“,”逗號(hào)來拆分字符串,此處利用 SUBSTRING_INDEX(str, delim, count) 函數(shù),最后把結(jié)果賦值給 num 字段。
涉及的代碼片段:
SUBSTRING_INDEX(SUBSTRING_INDEX('7654,7698,7782,7788',',',help_topic_id+1),',',-1) AS num
第一步:
以”,”逗號(hào)為分隔符,根據(jù) help_topic_id 的值來截取第n+1個(gè)分隔符之前所有的字符串。 (此處 n+1 是因?yàn)閔elp_topic_id 是從0開始算起,而此處需從第1個(gè)分隔符開始獲取。)
SUBSTRING_INDEX('7654,7698,7782,7788',',',help_topic_id+1)
eg:
當(dāng) help_topic_id = 0時(shí),獲取到的字符串 = 7654
當(dāng) help_topic_id = 1時(shí),獲取到的字符串 = 7654,7698
…(以此類推)
第二步:
以”,”逗號(hào)為分隔符,截取倒數(shù)第1個(gè)分隔符之后的所有字符串。
SUBSTRING_INDEX(SUBSTRING_INDEX('7654,7698,7782,7788',',',help_topic_id+1),',',-1)
eg:
根據(jù)第一步,當(dāng) help_topic_id = 0時(shí),獲取到的字符串 = 7654,此時(shí)第二步截取的字符串 = 7654
根據(jù)第一步,當(dāng) help_topic_id = 1時(shí),獲取到的字符串 = 7654,7698,此時(shí)第二步截取的字符串 = 7698
…(以此類推)
最終成功實(shí)現(xiàn)了以下效果 ~
注:不含分隔符的字符串拆分可參考 MySQL——字符串拆分(無分隔符的字符串截?。?/p>
補(bǔ)充:mysql字段分隔符拆分_MySQL里實(shí)現(xiàn)類似SPLIT的分割字符串的函數(shù)
下邊的函數(shù),實(shí)現(xiàn)了象數(shù)組一樣去處理字符串。
create function f_split(@c varchar(2000),@split varchar(2)) returns @t table(col varchar(20)) as begin while(charindex(@split,@c)<>0) begin insert @t(col) values (substring(@c,1,charindex(@split,@c)-1)) set @c = stuff(@c,@c),'') end insert @t(col) values (@c) return end go select * from dbo.f_split('dfkd,dfdkdf,dfdkf,dffjk',',') drop function f_split col -------------------- dfkd dfdkdf dfdkf dffjk
(所影響的行數(shù)為 4 行)
返回分割后的元素個(gè)數(shù),方法很簡單,就是看字符串中存在多少個(gè)分隔符號(hào),然后再加一,就是要求的結(jié)果。
CREATE function Get_StrArrayLength ( @str varchar(1024),--要分割的字符串 @split varchar(10) --分隔符號(hào) ) returns int as begin declare @location int declare @start int declare @length int set @str=ltrim(rtrim(@str)) set @location=charindex(@split,@str) set @length=1 while @location<>0 begin set @start=@location+1 set @location=charindex(@split,@str,@start) set @length=@length+1 end return @length end
調(diào)用示例:
select dbo.Get_StrArrayLength('78,2,3',')
返回值:4
返回分割后指定索引的第幾個(gè)元素,象數(shù)組一樣方便
CREATE function Get_StrArrayStrOfIndex ( @str varchar(1024),--要分割的字符串 @split varchar(10),--分隔符號(hào) @index int --取第幾個(gè)元素 ) returns varchar(1024) as begin declare @location int declare @start int declare @next int declare @seed int set @str=ltrim(rtrim(@str)) set @start=1 set @next=1 set @seed=len(@split) set @location=charindex(@split,@str) while @location<>0 and @index>@next begin set @start=@location+@seed set @location=charindex(@split,@start) set @next=@next+1 end if @location =0 select @location =len(@str)+1 --這兒存在兩種情況:1、字符串不存在分隔符號(hào) 2、字符串中存在分隔符號(hào),跳出while循環(huán)后,@location為0,那默認(rèn)為字符串后邊有一個(gè)分隔符號(hào)。 return substring(@str,@start,@location-@start) end
調(diào)用示例:
select dbo.Get_StrArrayStrOfIndex('8,9,4',2)
返回值:9
declare @str varchar(50) set @str='1,3,4,5' declare @next int set @next=1 while @next<=dbo.Get_StrArrayLength(@str,') begin print dbo.Get_StrArrayStrOfIndex(@str,@next) set @next=@next+1 end
調(diào)用結(jié)果:
1
2
3
4
5
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,。