Ok,
what I am trying to do is set up a system for a casino party company.
What I want to do is set it up so each party will have all the details together such as
Date
Time
Location
Also, I want to list who worked there.
Now, usually for every party there is about 10 people. Does this mean that I have to create a TABLE for every party?
Would have to name each table something like:
PARTY 001
PARTY 002 etc.
Would it look something this?
Table = Party001
Dealers Time Location
Paul 9:30PM Hotel
John
Peter
Craig
Also I would have to make an Employee list and for each Employee I want to state what parties they have worked.
Does this also mean that I should make a table for each worker?
Table - Employee001
Fname Lname Phone email City
John Paul 555.5555 email@email.com Nowhere land
Or should i do it like this:
Table = EMPLOYEES
employeeID FName LName Phone email partiesWorked
But if I do it this way I don't think there's a way to do it right?
I hope someone can clarify this for me.
Thank you.