I'm using MS Access 2003 (visual basic 6.3).
I'm running through a database to find duplicates. Basically, I want "fakecompany" and "fakecompany, inc" to be returned as a match.
Obviously the above sql does not work. Is there some way to accomplish it?
Thanks in advance
I'm running through a database to find duplicates. Basically, I want "fakecompany" and "fakecompany, inc" to be returned as a match.
Code:
SELECT db1.company, db2.company FROM db1, db2 WHERE db1.company LIKE %db2.company%
Obviously the above sql does not work. Is there some way to accomplish it?
Thanks in advance