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;

 

结果:

 

转载:https://blog.csdn.net/qq_34542964/article/details/72821764

posted @ 2020-09-25 14:19  正怒月神  阅读(773)  评论(0编辑  收藏  举报