M
|
mhollibush author 3/2/2016 |
I am new at all of this so this question may not be worded right. I have two tables ( Results and Person ) I want to add a field to the View Page on the Person that will add all the points in the "points column" in the Results Table and show total number of points earned based on the PersonId Can anyone give me some pointers as to how to make this work Any help would be greatly appreciated
|
![]() |
jadachDevClub member 3/2/2016 |
Why not just create a view in your database that sums the values per playerId? Then in the SQL editor join your table to that new view using playerId as the fk. On the view page you can then show the total. |
M
|
mhollibush author 3/2/2016 |
Why not just create a view in your database that sums the values per playerId? Then in the SQL editor join your table to that new view using playerId as the fk. On the view page you can then show the total.
|
M
|
mhollibush author 3/2/2016 |
With the help of the Admin, I was able to get part of it working. |