Hi,
have query-
SELECT cuskerr.postc AS kerr, cuskerr.first, cuskerr.last, cusvaux.postc AS vaux, cusvaux.first, cusvaux.last, cuskerr.ID, cusvaux.ID
FROM cuskerr, cusvaux
WHERE (((cuskerr.postc)=[cusvaux].[postc]) AND ((cuskerr.last)=[cusvaux].[last]));
This displays results that are equal to each other
but cannot create query where the output displays
all records in table cusvaux that are not in table cuskerr
ne ideas welcome
have query-
SELECT cuskerr.postc AS kerr, cuskerr.first, cuskerr.last, cusvaux.postc AS vaux, cusvaux.first, cusvaux.last, cuskerr.ID, cusvaux.ID
FROM cuskerr, cusvaux
WHERE (((cuskerr.postc)=[cusvaux].[postc]) AND ((cuskerr.last)=[cusvaux].[last]));
This displays results that are equal to each other
but cannot create query where the output displays
all records in table cusvaux that are not in table cuskerr
ne ideas welcome