I am creating a database to create and publish events>> The events table include fields such as Event Name, Event Description, Event Image…etc…
The information that is needed also includes things like “Event Category” and “Event Prices”
Let us start with event category: Do I create a Event Category new table such as:
Type: event category
Field: event program name
field: event ID (from events table)
or is there a way to create the Event Category as a field within the events table as list of things> if as a list of things… what I need is either to choose from the available ones and if not I want to be able to add a new one and choose it from the input form and not by adding it the database. if so how?
“Event Prices” since this has to fields which are “Price Type” and “Price Value” meaning each price type will have a value… meaning that each event will have different types and those types are shared across all events to choose from.
Let me explain: Price type examples: member price, non-member price, child price, Early bird price for members, early bird price for non-members…etc.
Now those types are used in most of the events but not necessarily all, and some events might require new types that might not have been created before… my thinking is that I need to create a new table for prices such as:
Type: Event Prices
Field: Price Type
Field: Price Value
Field: Event ID (from event table) (here another question would be: from the event id can I see reports that connect to other Type: “Events” fields?)
and if this is the case does that mean that I need to create and save the event and then add its prices so that the price table can see the event id in question?
I would highly appreciate your help