I have two tables:
- CampaignTable
 
which has following property
id , campaign ,user_group
example would be
1  8867116213  5,11,15,16,18,20
2  8867116214  0,8,22
Then I have another table called User Table
with following property
id emp_id  user_group
Example is like this
1  274  0,5,8,9,10,11,21,20
2  275  5,11,20
3  279  19,21,22,25
I have to join this table and create an Array which has campaign wise user
for example for campaign with id 1 it should give me
274, 275
How can I achieve this in Mysql
Thanks