Hello Everyone --
I've been working on an audit database for my company and I'm running into some issues with appending information to a child table.
Here's the basic structure of the two tables, and what I'm looking to do:
Table A (parent)
Table B (child)
- Audit ID (Autonumber, Primary Key)
- Customer ID
- Audit Trigger Date
- Audit ID
- Account Number
- Pass/Fail
Table B would contain a sample of 20 customer accounts from customer ID above. I currently have a one-to-many join on Audit ID between the two tables. I can append new rows to table A without issue, but I'm just not sure what is the best way to append my 20 rows to table B without violating my relationship. Any suggestions?