I currently have the following query which finds the user supplied text "[ENTER PROJECT ID:]" in the noted field.
Currently the records are returned only if the searched text is the leftmost text in the field.
What I need is to find the records where the supplied text is anywhere in the field, how can I do this?
Thanks a bunch.
Code:
SELECT * FROM ESTIM WHERE ((ESTIM.USER_TEXT2 = [ENTER PROJECT ID:])) ORDER BY ESTIM.USER_TEXT2 ;
Currently the records are returned only if the searched text is the leftmost text in the field.
What I need is to find the records where the supplied text is anywhere in the field, how can I do this?
Thanks a bunch.