Hello,
I submitted an SQL query in order to find members with the same Member ID and different Source field value .
In order to do it I created a copy of Flue_2003 and named it FluNODupl.
My query looks like the following:
SELECT [FLUE_2003].[MEMBER ID],[FLU_2003].[SOURCE],[FLUNODUPL].[MEMBER ID],[FLUNODUPL].[SOURCE]
FROM FLU_2003, FLUNODUPL
WHERE [FLUE_2003].[MEMBER ID]=[FLUNODUPL].[MEMBER ID] AND
[FLU_2003].[SOURCE]<>[FLUNODUPL].[SOURCE];
I did not get any error message about wrong syntax. However it looks like my query failed...
Could you please tell me what I did wrong?
Thank you!
Estersita
I submitted an SQL query in order to find members with the same Member ID and different Source field value .
In order to do it I created a copy of Flue_2003 and named it FluNODupl.
My query looks like the following:
SELECT [FLUE_2003].[MEMBER ID],[FLU_2003].[SOURCE],[FLUNODUPL].[MEMBER ID],[FLUNODUPL].[SOURCE]
FROM FLU_2003, FLUNODUPL
WHERE [FLUE_2003].[MEMBER ID]=[FLUNODUPL].[MEMBER ID] AND
[FLU_2003].[SOURCE]<>[FLUNODUPL].[SOURCE];
I did not get any error message about wrong syntax. However it looks like my query failed...
Could you please tell me what I did wrong?
Thank you!
Estersita