first post coming from a beginner programmer so please be kind!
I am creating a very simple badminton session recording web app. It allows the organisor to create a badminton event and add users to it. The users are stored in a SQL table and ordered by a PlayerID PK. The (weekly) badminton events have their own table too.
What is the most 'learner programmer friendly' way to associate a group of 'attendees' (PlayerID), to the event?
My first thoughts are for each event to have another related table for 'attendees', but considering we have a weekly session that'd amount to a lot of tables.. (need to keep historical data/events)
thanks