J
Joe K.
I have two tables: NM_Members and CA_Members
Both tables ID and Location fields.
NM_Members.ID is a primary key and CA_Members foreign key and the join is
set for ALL records from NM_Member and only those records from CA_Members
where the joined are equal. All records NM_Members are listed in the
CA_Member table.
When I execute the UPDATE listed below zero records are updated with the
data from the [CA_Members].Location field.
Please help me resolve this issue.
Thanks,
UPDATE CA_Members
INNER JOIN [NM_Members] ON [NM_Members].[ID]=[CA_Members].[ID]
SET [CA_Members].Location = [NM_Members].[Location]
WITH OWNERACCESS OPTION;
Both tables ID and Location fields.
NM_Members.ID is a primary key and CA_Members foreign key and the join is
set for ALL records from NM_Member and only those records from CA_Members
where the joined are equal. All records NM_Members are listed in the
CA_Member table.
When I execute the UPDATE listed below zero records are updated with the
data from the [CA_Members].Location field.
Please help me resolve this issue.
Thanks,
UPDATE CA_Members
INNER JOIN [NM_Members] ON [NM_Members].[ID]=[CA_Members].[ID]
SET [CA_Members].Location = [NM_Members].[Location]
WITH OWNERACCESS OPTION;