Hi all, a simple one I hope:
I'd like a query that checks for the inclusion of a value:
SELECT *
FROM JS20040408
WHERE field2 CONTAINS XXXX
Field2 MIGHT contain a value before, after, or on both sides of xxxx. I need to return all rows containing xxxx, regardless of whatever other data is in the field as well.
I thought about 'Like' with the %, ie. Like %xxxx%, but can't verify it on a system yet.
Thanks,
KS.