Is it possible to string together multiple SQL LIKE wildcards in one query - something like this?
LIKE \'% aaaa %\' AND LIKE \'% bbbb %\'
T
Yes, that will work, but the syntax is:
Field LIKE '%aaa%' AND field LIKE '%bbb%'