My task it to put black, white and gray lists in the database. Whenever someone notices a new word, it should be simply added to the database. These lists have few words in them. So I am trying to add a content that contains a few words.
Above you can see my tables. I want to query a few words to one ContentID. It should look like this:
ContentID Words
1 "Password", "Login", "Configure"
2 ".nl", ".be", ".com"
How do I query multiple values to one ContentID?

WHERE ContentID = 1 AND Words In ('Password','Login','Configure')? - not getting your question. :(