M
melwester
I've gotten an error message "The changes you requested to the table would
create duplicate values in the index, primary key or relationship".
The table that I'm trying to updat is allowed to have duplicate values
(MemberFID) as there are more then 1 note per MemberFID.
The child is set to AutoIDNum
The Master is set to CTAName_Combo
I don't have primary key in either table. Although the Notes table is where
this message is coming up is allowed to have duplicate values in the
MemberFID. I've tried changing the child to MemberFID but that didn't work
(didn't bring up any notes).
Here's my query:
SELECT tbl_MFMain.AutoIDNum, tbl_MFMain.MemberFID,
tbl_MemberFirmNotes.Comments, tbl_MemberFirmNotes.MNotesDate,
tbl_MemberFirmNotes.Initials, tbl_MFMain.MemberName
FROM tbl_MFMain LEFT JOIN tbl_MemberFirmNotes ON tbl_MFMain.MemberFID =
tbl_MemberFirmNotes.MemberFID
ORDER BY tbl_MemberFirmNotes.MNotesDate DESC;
I don't have no clue as to where to go from. Please help.
Thank you.
Donna
create duplicate values in the index, primary key or relationship".
The table that I'm trying to updat is allowed to have duplicate values
(MemberFID) as there are more then 1 note per MemberFID.
The child is set to AutoIDNum
The Master is set to CTAName_Combo
I don't have primary key in either table. Although the Notes table is where
this message is coming up is allowed to have duplicate values in the
MemberFID. I've tried changing the child to MemberFID but that didn't work
(didn't bring up any notes).
Here's my query:
SELECT tbl_MFMain.AutoIDNum, tbl_MFMain.MemberFID,
tbl_MemberFirmNotes.Comments, tbl_MemberFirmNotes.MNotesDate,
tbl_MemberFirmNotes.Initials, tbl_MFMain.MemberName
FROM tbl_MFMain LEFT JOIN tbl_MemberFirmNotes ON tbl_MFMain.MemberFID =
tbl_MemberFirmNotes.MemberFID
ORDER BY tbl_MemberFirmNotes.MNotesDate DESC;
I don't have no clue as to where to go from. Please help.
Thank you.
Donna