dept 表:
SQL:(我用的是 MySQL)
select
ID,
dept.NAME
,
substring_index(substring_index(EMP_ID,'/',help_topic_id+1),'/',-1) as num
from
dept,
mysql.help_topic
where
help_topic_id < length(EMP_ID)-length(replace(EMP_ID,'/',''))+1
结果:
参考:https://blog.csdn.net/pjymyself/article/details/81668157
建议看下这个人写的文档,我是看这篇文档写的SQL。
作者讲的是“MySQL 带分隔符的字符串拆分”,有详细的解析和例子,配有图文,简单易懂。
有一定的局限性,并不是所有的场景都适用.