Hi friends
I have a difficult problem on creating many to many database,
As a event manager, I have (for example) 10 events a month (120 events a year) , so I create a table name: EVENTS
Our company has about 200 freelance employees , and a part of them may join to organize our events , So I create a table name: EMPLOYEES
In that case (many to many relation) I have to create a new table name: EVENT DETAILS
And so, if 100 employee organize each event, so the table EVENT DETAILS may have 100*100 = 10.000 rows , and I think it is too many rows …
And the other way, I may create a new table for each event include many field: employee, salary, vendor, client, … but in that case, I have to create 120 table a year … I think it’s not good idea …
So, My question: is that right solution of that problem
and can we have the better solution for that
Thank you all in advance !