Codeigniterのドキュメント
join($table, $cond[, $type = ''[, $escape = NULL]])
ネストされた結合のサポートに関するドキュメントはありません。したがって、次のようなクエリを作成できます:
$this->db->select('users.*, GROUP_CONCAT(category.title SEPARATOR ',') as title')
->from('users')
->join('procducts as pr INNER JOIN category ON pr.category_id =category.id','users.id=pr.user_id','left')
->group_by('users.id');
$query = $this->db->get();