Hello all, I'm pulling table from SQL, say I have a column named "illness": ID | illness
----|---------
1 | fever,headache
2 | headache
3 | cough,fever
4 | cough,fever,headache In total there are, 4 possible categories (fever, headache, cough, other), how can I go about separating it into 4 columns with 0 or 1 values ID | fever | headache | cough | other
----|------|----------|-------|---------
1 | 1 | 1 | 0 | 0
2 | 0 | 1 | 0 | 0
3 | 1 | 0 | 1 | 0
4 | 1 | 1 | 1 | 0 Thank you
... View more