यह चाल चलनी चाहिए:
$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 उस विशेष प्रश्न के लिए।
आशा है कि इससे मदद मिलेगी!