首页 > 代码库 > 6.14 提取第n个分割的子串
6.14 提取第n个分割的子串
问题:从字符串中提取出一个指定的、由分割符隔开的子字符串。
create view v as
select ‘mo,larry,curly‘ as name
from t1
union all
select ‘tina,gina,jaunita,regina,leena‘ as name from t1;
select * from v;
+--------------------------------+
| name |
+--------------------------------+
| mo,larry,curly |
| tina,gina,jaunita,regina,leena |
+--------------------------------+
解决方案:
select name
from (
select iter.pos,
substring_index(
substring_index(src.name,‘,‘,iter.pos),‘,‘,-1) name
from v src,
(select id pos from t10) iter
where iter.pos <=
length(src.name)-length(replace(src.name,‘,‘,‘‘))
)x
where pos =2;
+-------+
| name |
+-------+
| larry |
| gina |
+-------+
6.14 提取第n个分割的子串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。