I built a form that inserts a venue into the venue table. Then I built a form that inserts an event into the event table.
In the event form I can select a venue from the venue table so that the new event contains the venueid from the venue.
I want to be able to select the event table, but at the same time display the venue and its fields next to each event.
so if event 1,3 both use venue a. and event 2,4 both use venue b. I want it to look something like:
event1: date, start, end; venue a: name, street, city, directions/website.
event2: date, start, end; venue b: name, street, city, directions/website.
event3: date, start, end; venue a: name, street, city, directions/website.
event4: date, start, end; venue b: name, street, city, directions/website.
I want the venue table separate for the simple reason the most venues around here like to change their name frequently. I don't want to have to update a million entrys with the correct name. Isn't this the reason for having tables in a database?