Hi,
What does this mean within my like statement?
LIKE '%[ .,!?]' + keyword + '[ .,!?]%'
I'm trying to get something, that will match for whole words
Hi,
What does this mean within my like statement?
LIKE '%[ .,!?]' + keyword + '[ .,!?]%'
I'm trying to get something, that will match for whole words
LIKE '%[ .,!?]' + keyword + '[ .,!?]%'
means
find anything that meets these conditions:
Just remember that this will lead to a full table/index scan, if your table is large you may need to rethink.