私がやりたいことは次のとおりです。
SELECT SUM(ABS(`number_x` - `number_y`)) AS `total_difference` FROM `table`
表は次のとおりです。
id | number_x | number_y
1 | 4 | 2
2 | 3 | 2
3 | 2 | 4
したがって、答えは次のようになります。(4-2 = 2)+(3-2 = 1)+(2-4 = 2)= 5
MySQLでこれを行うことはできますか?
ありがとう!