sql - Question regarding efficient table usage in MySQL -


i want users in web app able sign different "events". each event has things describing such name, date of event, description, , people describing event. should create individual table each event? or should have event row/column in event table?

in relational database create multiple tables, each 1 different aspect of event. have organiser table location table , events table

in event table have id of organiser , id of location, , data event. 3 tables describe event more don't need repeat data. organiser may have multiple events, @ multiple locations. each organiser , location needs 1 entry (usually) in respective tables.

dc


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -