M
mikesjLFG
I am trying to create a query which will take all values from table
Names Field Pre and compare it against table AllNames field Name.
Problem is there will only be PART of the name in the Allnames field.
What I have attempted was variations of this and I haven't been able
to get it to work with the * operator to show that it would be a
partial match not complete.
Select Allnames.Name
FROM Allnames
WHERE (((Name) Like ((Name) In (Select Pre + '*' From Names))));
If anybody could help me in identifying the issue and resolving it
would be greatly appreciated.
Thanks
Names Field Pre and compare it against table AllNames field Name.
Problem is there will only be PART of the name in the Allnames field.
What I have attempted was variations of this and I haven't been able
to get it to work with the * operator to show that it would be a
partial match not complete.
Select Allnames.Name
FROM Allnames
WHERE (((Name) Like ((Name) In (Select Pre + '*' From Names))));
If anybody could help me in identifying the issue and resolving it
would be greatly appreciated.
Thanks