Vet inte din exakta db-inställning, men något i stil med detta är hur du skulle göra den här frågan med CodeIgniters Active Record
$this->db->select('places.place_id');
$this->db->select_sum('places.place_id', 'total');
$this->db->from('places');
$this->db->join('users', 'places.place_id = user.place_id', 'left');
$this->db->group_by('user.place_id');
$this->db->get();