Is there a way to for an sql statement to search if a column string with multiple items contains a certain item, but not include a certain item that is a substring. The fol
select *
from tbltest
where platform like '%item%'
and platform not like '%item.%' -- searching for ASP
and platform not like '%.item%' -- searching for NET