Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 3
    Fix your data structure so you store all the game results in a single table. Commented Feb 22, 2017 at 2:52
  • Why in the world would you use a separate table for each game? Put them all in one table with a column for GAMENO or GAMENUMBER, and then you can actually use the data. What you have now is totally useless. What happens when there is a 17th (or 18th, or 32nd) game played later? Commented Feb 22, 2017 at 2:59
  • Actually, to normalize the data, you would probably need a Player table, Game table, and Player/Game/Score table. Commented Feb 22, 2017 at 3:13