Thanks in advance for your help.
I am working with an application that the user has developed. It offers you to search for something, and then performs the main query:
SELECT * FROM Table
WHERE Entry=[ENTRY];
I can not change this format. All I can do is change the text [ENTRY]. Is there a way that I can pull out multiple records without changing the structure of the statement itself? For instance:
SELECT * FROM Table
WHERE Entry='COW | APPL* | ROO*';
to get the results:
COW, APPLE, APPLES, ROOF, ROOM, ROOSTER;
Sorry, please, the simplest example - Thank you,
Blake
source
share