I know that if you use the following code...
UPDATE
table
SET
field = ""
WHERE
field1 = ""
than it will change field in all records that meet the criteria of field1
What I need to know is there a way to update all records that meet only a part of field1
ie...
UPDATE
table
SET
field = "yummy"
WHERE
field1 = "apples|oranges"
if field one contains apples|oranges|grapes
it would still pick up that record...
hopefully this makes sence....
Thanks....