Continuation school students begin the term with credits (tblClasses.Start) and earn additional credits each week (tblClasses.W1 through tblClasses.W40). At the begninning of the next term tblClasses.Start has to be updated to reflect progress to date and the weekly credits reset to zero. The resetting to zero portion I can do, but variations of the following have not been a success.
UPDATE tblClasses SET Start = SUM(Start+W1...+W40);
What am I doing wrong?
UPDATE tblClasses SET Start = SUM(Start+W1...+W40);
What am I doing wrong?