I want to know how can I add numbers from one table field to another for example, I have:
Table name = Game:
opponent1(name of row) vs. opponent 2 - score1 = 25 - score2 = 20
I would like table "team" to update automatically with the following:
Table name = Teams:
Opponent1:
Points in favor = 25
Points against = 20
Opponent 2:
Points in favor = 20
Points against = 25
What would be a code for that? Could it be (has some pseudocode):
- If score1 bigger than score2
- Add score1 to "pointsfavor" field in table "team" to opponent1
- And add $score2 to "pointsagainst" in table "team" to opponent1
Can someone help me please?