码迷,mamicode.com
首页 > 数据库 > 详细

批量更新逗号隔开的名称 (部门里面将多个用逗号隔开的ID转换成用逗号隔开的名称)(mysql)

时间:2015-08-28 17:53:14      阅读:908      评论:0      收藏:0      [点我收藏+]

标签:select   database   

update dept b, (select group_concat(t.deptId), group_concat(d.deptName separator ‘/‘) as dName, t.id, t.deptName from (select substring_index(substring_index(a.deptId,‘,‘,b.help_topic_id+1),‘,‘,-1) as deptId, a.id, a.deptName
from  
(select d.father AS deptId , d.id, d.deptName
 from dept d ) a
join mysql.help_topic b on b.help_topic_id < (length(a.deptId) - length(replace(a.deptId,‘,‘,‘‘))+1)) t LEFT JOIN dept d on t.deptId = d.id  where t.deptId != ‘‘

GROUP BY id, deptName ) c set b.location=c.dName where b.id = c.id


效果如图

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

批量更新逗号隔开的名称 (部门里面将多个用逗号隔开的ID转换成用逗号隔开的名称)(mysql)

标签:select   database   

原文地址:http://blog.csdn.net/sunshine901106/article/details/48051675

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!