I have in my database this table :
+----+-----------+
| ID | JOB |
+----+-----------+
| 1 | Developer |
| 2 | Designer |
+----+-----------+
I want to run this query that's normaly will get the ID : 2
select j.ID from jobs j where 'Designer' in ( j.JOBS )
unfortunately it's not working when I have like this table
+----+------------------------------------------+
| ID | JOB |
+----+------------------------------------------+
| 1 | Developer |
| 2 | Designer,administrator,analyst,Developer |
+----+------------------------------------------+
Because the value of j.JOBS is string : ' Designer,administrator,analyst,Developer '
not like multipe values separeted by commat like this : ' Designer ', ' administrator ' , ' analyst ' ,' Developer'
So, how can I solve this problem, and I wish I explain well my question .thanks