I am trying to return a result when one field contains another. For example,
field1="ABCDEFG"
field2="CDE"
Match= True
I wanted to try something similar to `where like(field1, %field2%)`, but I'm not sure how to make that happen as field2 is a variable.
↧
How to write a search to determine if the value of one field is found in the value of another field?
↧