Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
投票の総数 (COUNT()) とすべての投票の合計 (SUM()) を返すクエリがあります。1 票は -1 または 1 として保存されます。
今、私は次のようになり、肯定的な投票の数を知りたいです:
賛成票(および反対票)の数を取得する式は何ですか?
この例では、結果は次のとおりです: -1 + -1 + -1 + 1 (3 つの反対票と 1 つの賛成票)
-x +y = sum x + y = tot => 2y = sum + tot => y = (sum + tot)/2 ; x = tot - y
はy、賛成票と反対票の数ですx。
y
x
または、より強力な数学用語で:
マイナスを0として保存しないのはなぜですか?
プラスは合計になり、マイナスは合計 - 合計になります。