I thought it was CONTAINS, but that\'s not working for me.
CONTAINS
I\'m looking to do this:
IF CONTAINS(@stringVar, \'thisstring\') ... <
IF CONTAINS(@stringVar, \'thisstring\') ...
IF CHARINDEX('TextToSearch',@TextWhereISearch, 0) > 0 => TEXT EXISTS IF PATINDEX('TextToSearch', @TextWhereISearch) > 0 => TEXT EXISTS Additionally we can also use LIKE but I usually don't use LIKE.