I have a database for an annual festival with an awards contest. For each year, there are a number of entries. So I have a table for FestivalYears, with each year, and Entries, with an id and its appropriate year:
FestivalYears.festival_year
Entries.entry_id
Entries.festival_year -> FestivalYears.festival_year ( many to 1 )
So also for each year, there are a number of awards. Some awards, like "Best of Show", can only be given once. Others, like "Honorable Mention" can be given to any number of entries. So for each year, I want only one "Best of Show" and a few others, and then multiple "Honorable Mentions" and "Official Selections". For each entry, it can have 0 or 1 award. For instance, if it's an honorable mention, then it can't win "Best of Show" also. It can only win one award, or none.
I'd like to see if I can enforce this logic in the database structure. However, the way I can see to do it feels like a hack: if I had two tables, one for multiple-winner awards, and the other for single-winner awards, then I could enforce those relational rules.
These tables hold the names of the awards:
SingleWinnerAwards.award_name
SingleWinnerAwards.award_id
MultipleWinnerAwards.award_name
MultipleWinnerAwards.award_id
Then I have these tables which would store the actual winners
FestivalSingleWinners.entry_id -> Entries.entry_id
FestivalSingleWinners.award_id -> SingleWinnerAwards.award_id
... which has a unique key, so entries can only win one award from single awards.
And then,
FestivalMultipleWinners.entry_id -> Entries.entry_id
FestivalMultipleWinners.award_id -> MultipleWinnerAwards.award_id
... which allows multiple awards of the same name.
However, this structure doesn't prevent entries from winning multiple awards. There's nothing that would stop any particular entry from having a related record in both FestivalSingleWinners and FestivalMultipleWinners.
How can I enforce these rules in the database structure? Ideally, I'd like to.
I'm using MySQL 5.x, FWIW.