之前在网上搜索了很多关于这个问题的解答方式,基本都是使用substring_index和mysql.help_topic搭配使用,方法没错,但是使用后发现运行时间太长,因此就放弃使用网上推荐的方法。
可以使用substring_index和union all搭配使用;
图1
图2
将图1变为图2,
可以这样编写代码:
select id,name,substring_index(shareholder,',','1') shareholder, from test
where (length(shareholder)-length(replace(shareholder,',','')))=1
union all
select id,name,substring_index(shareholder,',','-1') shareholder, from test
where (length(shareholder)-length(replace(shareholder,',','')))=1
union all
select id,name,shareholder from test where (length(shareholder)-length(replace(shareholder,',','')))=0
即可,运行起来也是很快。