I'm trying to map this relationship described here:
"Teams play games. A team plays up to 40 games a season. Each game is played by 2 teams. You must keep track of the score for each team in a game. Teams may never play a game, but if a game is scheduled then it must have 2 teams play in it."
The entities here are Team and Game. Both have an ID associated with the entity i.e teamID and gameID. Common sense tells me that Game should be a weak entity because without team there can be no game. However if game has its own unique ID so does this mean it's not a weak entity?
Also how would I create relational table for the entity Game? What would the foreign key in Game be if there is exactly 2 teams that play in a game? Would I just have a teamOneID* and a teamTwoID* in the table?