I am doing basketball stats. I have one table that has each players information (age, school, season scoring total, etc.) for a season titled 'PlayersbySeason' and another table 'Performances' that has a record for each players involvement in each game. I want the "Seasonpointtotal" field in the Playersbyseason table to be a sum of all linked records in the Performances table, specifically from a field titled "Points". How would I go about doing this? I assumed some sort of update query, but I do not know how to do it.