与循环的Mysql视图表

时间:2016-01-29 02:18:06

标签: mysql

任何人都可以了解创建视图表来总结投票数。例如: 1.在投票表中选择不同的代码 2.我想创建一个视图表,根据不同的代码结果总结投票表中的总票数。

目前我有这样的声明:

CREATE VIEW vote_summary AS
SELECT COUNT(*), code
FROM votes 
WHERE code = 292907005 //this should be get from the distinct result in vote table
AND chapter_id != 0

Basicaly我想创建程序声明来收集投票摘要。感谢

1 个答案:

答案 0 :(得分:1)

最好猜测您正在寻找的内容,而不是使用where条件,您实际上想要使用group by

select count(*) cnt, code
from votes
where chapter_id != 0
group by code