mysql.help_topic表无权限使用解决方法

1.由于我的数据有个字段是由;号隔开
在这里插入图片描述
我想要分开,每个人单独一条,于是用到了mysql的help_topic表
代码:

	 	 select  id,
        substring_index(substring_index(a.owner,';'
        ,b.help_topic_id+1),';',-1) owner
    from 
        test a
    join
        mysql.help_topic b
        on b.help_topic_id < (length(a.owner) - length(replace(a.owner,';',''))) 
        -- 比较help_topic_id大小与owner去掉;后的长度之差,小于则连接因为mysql.help_topic是0开始
		-- 意思就是重复连接复制了几份但是唯一不同的就是mysql.help_topic的id大小
   order by a.id

原理解析:理解了上面注释后就很好理解了,substring_index(substring_index(a.owner,’;’
,b.help_topic_id+1),’;’,-1)因为不同的就是help_topic_id,onewer都是复制了几份,只要根据不同点help_topic_id来动态截取字段就能实现。
实现结果:
mysql.help_topic表无权限使用解决方法_第1张图片
全查出来就更好懂了吧:
mysql.help_topic表无权限使用解决方法_第2张图片
再不懂我把截取去掉:
mysql.help_topic表无权限使用解决方法_第3张图片
所以如果你没有权限使用mysql自带表,就自己建一个,因为靠的是join连接,你要考虑下大小,不要字段太小,划分太多

你可能感兴趣的:(mysql)