Hi,
I can't find out how to deal with the following pattern match problem.
for example, values for column X:
row1: Harold,John,Mark
row2: Steve,Johnny,Bob
row3: John
How can I set up the query in a way that when I search for "John" in column X, only a match is found on row 1 and 3?
using LIKE "%john%" will also match row 2 which should not happen!
Thanks,
Raoul