What is happening with your current script is:
1. A row (member) is read from armysys
2. With the information of this row, you do some calculations
3. ALL ROWS (members) are updated with the outcome of teh calculation performed for 1 member.
4. goto -> 1.
You will need to use the memberid of the current row (for which you've done calculations) in the update WHERE-clause.
The way you have it now, all members will get the outcome of the calculation of the last member when this script is finished.
|