我想计算此表的每个项目的投票数:
user item vote
--------------------------------
4 1 left
4 2 left
2 2 right
3 2 left
1 3 right
结果必须如下:
item | left_vote | right_vote
1 1 0
2 2 1
3 0 1
我试过使用这样的查询:
SELECT t.item, count(vote) as left_count, t.right_count from (SELECT count(vote) as right_count, item from view where vote = 'right') as t, view where vote = 'left';
但它不起作用。我认为我必须使用子查询连接。
mysql是真的吗?
答案 0 :(得分:2)
在MySQL中你可以使用条件聚合:
select item, sum(vote = 'left') as left_vote, sum(vote = 'right') as right_vote
from votes v
group by item;
您不需要连接或子查询。