L
LDMueller
I have a table and I need to run a query to locate duplicates withing a
specific name field.
I created a "Find Duplicates Query" using the wizard, but it only finds
exact matches. This is the code from the query generated by the wizard.
In (SELECT [One] FROM [Anniversary] As Tmp GROUP BY [One] HAVING Count(*)>1 )
I need the query to locate something like the following from the name field.
If I search the name field for "Miller" I need it to find any of the
following:
Name
Ms. Sofia Miller
Mr. Miller James
Constance Miller
Can anyone help?
Thanks in advance!
LDMueller
specific name field.
I created a "Find Duplicates Query" using the wizard, but it only finds
exact matches. This is the code from the query generated by the wizard.
In (SELECT [One] FROM [Anniversary] As Tmp GROUP BY [One] HAVING Count(*)>1 )
I need the query to locate something like the following from the name field.
If I search the name field for "Miller" I need it to find any of the
following:
Name
Ms. Sofia Miller
Mr. Miller James
Constance Miller
Can anyone help?
Thanks in advance!
LDMueller