I have values like something
| UserName | SkillsID |
|------------|------------------|
| Sohil | 1,2,15,16,19, |
| Ankur | 5,8,14,19, |
| Lalu | 4,3,14,15, |
| Vinod | 5, |
| Milind | 8,11 |
now I want to search the Users who have got SkillsID = 5 then result would
| UserName | SkillsID |
|------------|------------------|
| Ankur | 5,8,14,19, |
| Vinod | 5, |
How my query would be?
I have thought to split SkillsID into table & then perform query on it but i am not getting any idea to split. can anybody help me???
Thanks in advance to helpers..