Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Actually in this case sum(a) could just work by itself I suppose. – Rick RyanMay 15 '12 at 0:15
1
I thought that too, but will it? If a=0 in 5 rows, and a=1 in 6 rows, SUM(a) will give you 6, and @Jonas's answer will give you 1. Which result are you looking for? – bfavarettoMay 15 '12 at 0:22
1
Rick, you are seeing SUMs instead of COUNTs. Now, it is true that the above is equivalent to 2*sum(a) - count(*), assuming that a only takes on the values of 0 and 1. Let's call that an interesting observation. – Gordon LinoffMay 15 '12 at 0:26
SUM(a)will give you 6, and @Jonas's answer will give you 1. Which result are you looking for? – bfavaretto May 15 '12 at 0:22