I have two tables: Employee (ID, Name, Address) and Store(ID,Address) and I would like to record information about people who work in each store.
I thought of making a new table called Employee_List table. My questions:
1- Employee_List and Employee has one-to-many relation, right?
2- Employee_list to store has one-to-one relation, right?
3- How to define foreign and primary keys for Employee_List table?