if there is a table.
id |total | setcolumn
1 | 5 | 2,3,4
2 | 1 | 1,3
3 | 3 | 2,1,4
i need to update total column to equal sum of setcolumn like this
id | total| setcolumn
1 | 9 | 2,3,4
2 | 4 | 1,3
3 | 7 | 2,1,4