我的投票表看起來像在我的數據庫中;我想計算特定ID的總和
ID CandidateID
1 205
2 209
3 203
4 205
5 205
6 209
代碼:
<?php $votes_query=mysql_query("select * from votes where CandidateID='$id'");
$vote_count=mysql_num_rows($votes_query);
echo $vote_count;
?>
上面的代碼提供了像,CandidateID 205 =3 votes
,CandidateID 209=2 votes
哪些代碼可以在表格中總結這些選票是象,candidateID 205 + CandidateID 209 = 3+2=5
個別結果?
使用'select sum(votes)from CandidateID ='$ id'' –
(sum)(http://www.tutorialspoint.com/mysql/mysql-sum-function.htm) – Dexa
如果您有多個candidate_id然後使用'in'子句...'從候選人ID($ id)' –