我需要计算一组已知数据之间差异的总和。php 中的等价物是
(count(array_diff_assoc($array1))
. Mysql可以做到这一点吗?我有一组数据可以与表中的其他字段列进行比较。
我要比较的数据是columnA : 3, columnB : 6, columnC : 4
测试表是:
ID columnA columnB columnC
1 2 6 1
2 6 1 3
3 3 6 4
预期结果:
ID numbersofdifferences
3 0
1 2
2 3
感谢您的帮助,杰西卡