それでうまくいくはずです:
$this->db->select('SUM(type) as score');
$this->db->where('question_id',1);
$q=$this->db->get('votes');
$row=$q->row();
$score=$row->score
あなたの$score
変数にtype
の合計が含まれるようになりました sその特定の質問のために。
お役に立てば幸いです。
それでうまくいくはずです:
$this->db->select('SUM(type) as score');
$this->db->where('question_id',1);
$q=$this->db->get('votes');
$row=$q->row();
$score=$row->score
あなたの$score
変数にtype
の合計が含まれるようになりました sその特定の質問のために。
お役に立てば幸いです。