mysql内连接group_concat mysql

时间:2017-02-18 07:05:25

标签: mysql join group-concat

TABLE 1 : 
ID         CODE 
1,2,3,4,5  abc
2,3,4,5    xyz 

TABLE 2 :
ID   NAME
1    NM1
2    NM2
3    NM3
4    NM4
5    NM5

加入是ID。 我需要使用CODE =' abc'

的连接来获取NAME

任何帮助表示赞赏

1 个答案:

答案 0 :(得分:1)

尝试功能find_in_set

select tbl2.name
from tbl1
join tbl2 on find_in_set(tbl2.id, tbl1.id) > 0
where tbl1.code = 'abc'

demo此处。