I have some SQL like the following but it is case sensitive. It’s been suggested that iLike could be used instead of Like but Base doesn’t seem to accept it. Is there an equivalent that I can use in my code? (In the example, I want the update to apply where the Description is Freds Groceries, FREDS Groceries or FREDS GROCERIES or any combination of upper and lower case).
Example:
UPDATE “tblSpend”
SET “Type” = ‘77’
WHERE (“Description” Like ‘%Freds Groceries%’)