I have a sql field with values like “test had, that , much never”;
I want to know wether “had” is in that list if yes return the whole datarow.
There was a sql server function like “In” Select value in (fieldname)…
anyone can tell me, thanks 🙂
p.s. dont want to use the “like” which is slow.
If you don’t want to use
LIKEconsider Full Text Indexing and theCONTAINSstatement instead.