P
Pim
I'm trying to set up query to select all companies where
the owner's name is a part of or similar to the name of
the company.
Table contains 3 columns: unique identifier, company name,
company owner's name.
I came up with:
In (SELECT [Company Name] FROM [Company table] As Tmp
GROUP BY [Company Name],[Company Owner] HAVING Count(*)>1
And [Company Owner] = [Company Table].[Company Owner])
But results aren't satisfactory: results match my
criteria, but there are many companies that also match the
criteria which are not found...
Suggestions??
the owner's name is a part of or similar to the name of
the company.
Table contains 3 columns: unique identifier, company name,
company owner's name.
I came up with:
In (SELECT [Company Name] FROM [Company table] As Tmp
GROUP BY [Company Name],[Company Owner] HAVING Count(*)>1
And [Company Owner] = [Company Table].[Company Owner])
But results aren't satisfactory: results match my
criteria, but there are many companies that also match the
criteria which are not found...
Suggestions??