Hi Folks,
I have a quick question...probably with my logic. I have 20,000 records in a query. I know that some of the records are duplicates because I have the names, for example, FirstName:"Fred", LastName:"Flintstone" and then another record with FirstName:"Flintstone" , LastName:"Fred". I would like to find these records in another query. Now, my WHERE code in the SQL is
____________________________________________________________
WHERE ([Quick Query].[LastName] & [Quick Query].[FirstName])=([Quick Query].[FirstName] & [Quick Query].[LastName]);
____________________________________________________________
This returns all FirstName:"Fred", LastNAme:"Fred", but not what I want.
WHen I say it in English it seems to make sense:
WHERE FirstName AND LastNAME is Equal to LastName and FirstName.??
ANy thoughts are much appreciated.
Thanks,
Colin.
I have a quick question...probably with my logic. I have 20,000 records in a query. I know that some of the records are duplicates because I have the names, for example, FirstName:"Fred", LastName:"Flintstone" and then another record with FirstName:"Flintstone" , LastName:"Fred". I would like to find these records in another query. Now, my WHERE code in the SQL is
____________________________________________________________
WHERE ([Quick Query].[LastName] & [Quick Query].[FirstName])=([Quick Query].[FirstName] & [Quick Query].[LastName]);
____________________________________________________________
This returns all FirstName:"Fred", LastNAme:"Fred", but not what I want.
WHen I say it in English it seems to make sense:
WHERE FirstName AND LastNAME is Equal to LastName and FirstName.??
ANy thoughts are much appreciated.
Thanks,
Colin.