having a one-to-many view derived of two tables, how do I add a record to the 'Many' table and not the primary?
Example:
table One - fields Code(primary key), name
table Many - Fields many_Code (primary), one_code, some_date
View relates table one and many by Inner Join Code=Many_code
Now, how do I add a record to table Many without adding a new record to table One? Wouldn't 'Append Blank' also add a record to the parent table?
Thank you in advance
Rainer
Example:
table One - fields Code(primary key), name
table Many - Fields many_Code (primary), one_code, some_date
View relates table one and many by Inner Join Code=Many_code
Now, how do I add a record to table Many without adding a new record to table One? Wouldn't 'Append Blank' also add a record to the parent table?
Thank you in advance
Rainer