I have a table that contains a list of words. Each of the words has multiple categories assigned to them. What is the best way to do that?
I do not want to use a set, because the list of categories keeps changing.
I was thinking of having another table that assigns IDs to the categories and then add a field with the list of categories to the table containing the words. Is storing a list of IDs in a text field the "proper" way to do this?