欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySQL数据库中字段含逗号的数据,分隔成多条数据

程序员文章站 2022-04-08 08:45:53
...

 

MySQL数据库中字段含逗号的数据,分隔成多条数据

sql语句:

select a.id,substring_index(substring_index(a.name,',',b.help_topic_id+1),',',-1) name 
from test a join
mysql.help_topic b
on b.help_topic_id < (length(a.name) - length(replace(a.name,',',''))+1)
order by a.id;

 

结果:

MySQL数据库中字段含逗号的数据,分隔成多条数据

 

相关标签: SQL