Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

codeigniter mysql left join include select


Você pode usar o modo de subconsulta do codeigniter para fazer isso, para esse fim, você terá que hackear o codeigniter. like thisVá para system/database/DB_active_rec.php Remova a palavra-chave public ou protected destas funções
public function _compile_select($select_override = FALSE)
public function _reset_select()

Agora a escrita da subconsulta está disponível E agora aqui está a sua consulta com registro ativo
$select =   array('DISTINCT c2_id','f_id','f_name');
$this->db->select($select);
$this->db->from('file');
$this->db->order_by('f_id','DESC');
$subQuery1 = $this->db->_compile_select();

unset($select);

$this->db->_reset_select();

$select =   array('DISTINCT c2_id','f_id','f2_name');
$this->db->select($select);
$this->db->from('file2');
$this->db->order_by('f2_id','DESC');
$subQuery2 = $this->db->_compile_select();

unset($select); 

$this->db->_reset_select();

// And now your main query

$select =   array(
                  'c1.c1_id',
                  'c1.c1_name',
                  'c2.c2_id',
                  'c2.c2_name',
                  'c2.c2_type',
                  'c2.c2_status',
                  'f.f_id',
                  'f.f_name',
                  'f2.f2_id',
                  'f2.f2_name'
            );

$this->db->select($select);
$this->db->from('category2 c2');
$this->db->join("($subQuery1)",'f.c2_id = c2.c2_id','left');
$this->db->join("($subQuery2)",'f2.c2_id = c2.c2_id','left');
$this->db->where('c2.c2_status',1);
$this->db->group_by('c2.c2_id');
$main_query = $this->db->get();

E a coisa está feita. Cheers!!!Nota:Ao usar sub-consultas, você deve usar
$this->db->from('myTable')

ao invés de
$this->db->get('myTable')

que executa a consulta.

Agora, você pode verificar a consulta que foi construída como
echo $this->db->last_query();