Hi, I have these two tables
horse_entries
ent_HorseName (PK)
ent_entries
horse_information
inf_HorseName
inf_Ground
inf_Notes
I have no records in horse_information yet. I need it so that when a record is added to the first table then whatever is added to ent_HorseName is added to inf_HorseName. So I want all the records from horse_entries in horse_information. I want to be able to add to horse_information without that record being added to horse_entries. What kind of relationship should I use. Thanks
horse_entries
ent_HorseName (PK)
ent_entries
horse_information
inf_HorseName
inf_Ground
inf_Notes
I have no records in horse_information yet. I need it so that when a record is added to the first table then whatever is added to ent_HorseName is added to inf_HorseName. So I want all the records from horse_entries in horse_information. I want to be able to add to horse_information without that record being added to horse_entries. What kind of relationship should I use. Thanks