C
Craig
This is additional question from my post earlier:
I'm trying to do a subquery that uses "like" to find all companies in table2
that have a keword in their name that is found in table1.
The following returns the error "at most one record can be returned by this
subquery"
SELECT table2.*
FROM table2
WHERE (SELECT table1.keyword
FROM table1
WHERE table2![companyname] LIKE "*" & table1.keyword & "*");
Any help would be greatly appreciated. Thanks.
I'm trying to do a subquery that uses "like" to find all companies in table2
that have a keword in their name that is found in table1.
The following returns the error "at most one record can be returned by this
subquery"
SELECT table2.*
FROM table2
WHERE (SELECT table1.keyword
FROM table1
WHERE table2![companyname] LIKE "*" & table1.keyword & "*");
Any help would be greatly appreciated. Thanks.