I need to create a table something like this:
Patient table
----------
ID
Name
Categories
The thing is, for each of these records there can be multiple Categories. Something like this:
ID: 321
Name: Bob
Categories: Flu, Diabetes, Cancer
How can I do this? I need a separate Categories table, I'm sure, but how do I store multiple Categories in my Patient.Categories column?
Patient table
----------
ID
Name
Categories
The thing is, for each of these records there can be multiple Categories. Something like this:
ID: 321
Name: Bob
Categories: Flu, Diabetes, Cancer
How can I do this? I need a separate Categories table, I'm sure, but how do I store multiple Categories in my Patient.Categories column?