I have a DB that is very complex. I have 3 tables. The first table only has "Date" in it (current date) the second table has "Shifts" (employee work shift (1, 2, 3 etc..) and my last table is "Extras" (includes Event, Appearance, First Name, Last etc...) The problem that I am running into is actually creating this relationship. For every "Date" there are Multiple shifts (as explained above) and for every Shift there are multiple "Events", "Appearances" pretty much for every Shift there are multiple employees working at that time. I have tried to make a one-to-many relationship from Date to Shift, then I made a one-to-many relationship from Shift to "Extras" but that did not work out well. Does anyone know how I can accomplish this..please!!