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

mysql处理以逗号隔开的字段内容

时间:2017-12-27 18:13:52      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:target   com   get   sql   html   span   www.   art   好的   

有一个字段保存了CheckBox内容,比如职业目标选择对于数据库字段otWorkgoal,保存了1,2,3,4内容

现在需要使用纯mysql语句,将字段otWorkgoal根据内容,进行翻译成中文的内容。

可使用FIND_IN_SET()函数+concat_ws()函数实现。

FIND_IN_SET()可参考https://www.cnblogs.com/zxmceshi/p/5479892.html

 

concat_ws()可参考http://blog.csdn.net/desilting/article/details/38563087

 

具体的sql语句如下

select 
concat_ws(,,(select 为创业积累经验技能与资源 from online_person_info q where find_in_set(1, q.otWorkgoal) and t.id = q.id)
,(select 更高的职位晋升空间 from online_person_info q where find_in_set(2, q.otWorkgoal) and t.id = q.id) 
,(select 更好的薪酬待遇 from online_person_info q where find_in_set(3, q.otWorkgoal) and t.id = q.id)
,(select 更具挑战的工作内容  from online_person_info q where find_in_set(4, q.otWorkgoal) and t.id = q.id)
,(select 学习到更厉害的专业技能 from online_person_info q where find_in_set(5, q.otWorkgoal) and t.id = q.id)
,(select 更舒适的工作环境 from online_person_info q where find_in_set(6, q.otWorkgoal) and t.id = q.id)
,(select 减小工作压力 from online_person_info q where find_in_set(7, q.otWorkgoal) and t.id = q.id)
,(select 更近的上班距离 from online_person_info q where find_in_set(8, q.otWorkgoal) and t.id = q.id)
,(select 其他 from online_person_info q where find_in_set(9, q.otWorkgoal) and t.id = q.id)
) as otWorkgoal
from online_person_info t where t.id=61

即可进行翻译

mysql处理以逗号隔开的字段内容

标签:target   com   get   sql   html   span   www.   art   好的   

原文地址:https://www.cnblogs.com/conswin/p/8125947.html

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