Hello all! New here, self-learning database design and applying what I learn with Access. I believe I have a good understanding of Relationships, however, I am having problems with a one to many relationship I created. I have a table, named 'Names_Info' (the child) and another named 'Business_Info' (the parent). Names_Info has a foreign key labeled 'Business_ID' and is linked to the primary key of the parent table. If I attempt to create a record in the 'Names_Info' table, which is the parent table to a few other tables, it won't let me create the record if the record is not associated with a business record. I can understand why this is, but in a real database solution situation, the name record might not have a business association if, say, the person was unemployed. I have read that the FK may be or may not be Null (and I have it as not required in the 'Names_Info ' table), so how do I do this? I know if I create a many to many relationship I can solve this, but I'm trying to learn without creating that type of relationship. Thanks!