Auswahl des Namens, das ein bestimmtes Wort in SQL enthält
SELECT * FROM mytable
WHERE column1 LIKE '%word1%'
OR column1 LIKE '%word2%'
OR column1 LIKE '%word3%'
DeuxAlpha