Hello... I don't know the best way to do this, but this is what I need to do:
I have a table of "players" with main columns - total games played and total games won. Every time the players complete a match, they submit their scores (Lets say weekly) Once the scores are updated, I will run a query to determine the win/loss ratio
What i am wondering: since there are new scores every week, could I just start a new table every week and somehow "merge" or "add" the 'games won' and 'games played' fields, as long as they match with the correct player (identified by unique "player ID numbers")
I know there is a simple way to do something like this, I'm just not sure what it is...I need the simplest way to enter this data... the other problem is that data is not reported from ALL players every week.... Can I just create a new table that contains 3 columns : PlayerID, Games Won, Games Played and then somehow merge that with a master table to get accumulated scores/totals? And in that table, if a Player ID is used twice, will the data just be "added up" when inserted into the Master Table?
As you can tell I'm a little confused... I hope I have made it clear what I am trying to do....
I have a table of "players" with main columns - total games played and total games won. Every time the players complete a match, they submit their scores (Lets say weekly) Once the scores are updated, I will run a query to determine the win/loss ratio
What i am wondering: since there are new scores every week, could I just start a new table every week and somehow "merge" or "add" the 'games won' and 'games played' fields, as long as they match with the correct player (identified by unique "player ID numbers")
I know there is a simple way to do something like this, I'm just not sure what it is...I need the simplest way to enter this data... the other problem is that data is not reported from ALL players every week.... Can I just create a new table that contains 3 columns : PlayerID, Games Won, Games Played and then somehow merge that with a master table to get accumulated scores/totals? And in that table, if a Player ID is used twice, will the data just be "added up" when inserted into the Master Table?
As you can tell I'm a little confused... I hope I have made it clear what I am trying to do....