Hi all,
I have a table that contains a field Address and a field City. Sometimes the Address already contains the City field, ie, City is redundant.
I want to find these records.
I tried:
Select Address ,City
FROM tblAddr
where contains([Address],[City])
This gives a syntax error, however
Select Address ,City
FROM tblAddr
where contains([Address],'Chicago')
...this works fine so the FT capability is not at issue.
Is it impossible to do an FT search using another field as the search term?
Thanks,
--Jim
I have a table that contains a field Address and a field City. Sometimes the Address already contains the City field, ie, City is redundant.
I want to find these records.
I tried:
Select Address ,City
FROM tblAddr
where contains([Address],[City])
This gives a syntax error, however
Select Address ,City
FROM tblAddr
where contains([Address],'Chicago')
...this works fine so the FT capability is not at issue.
Is it impossible to do an FT search using another field as the search term?
Thanks,
--Jim