I would like to select all rows from [Column]
that have within their string the words in a list as so:
select [Column]
from [db]
where [Column] like '%some%' or
[Column] like '%word%' or
[Column] like '%and%' or
[Column] like '%another%'
However, as I have a long list of words, I do not want to repeat the or [Column] like '%%'
. Is there a better way to write this? I am using SQL Server Management Studio.