Itu harus berhasil:
$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
. Anda variabel sekarang berisi jumlah type
s untuk pertanyaan khusus itu.
Semoga membantu!