Codeigniter JOIN(SELECT查询

时间:2013-01-10 05:29:06

标签: codeigniter

可以通过CI Query Builder类生成以下查询吗?

SELECT name 
       FROM table1 t1 
                   JOIN 
                     (SELECT ID FROM table2 ORDER BY id LIMIT 5) t2 
                   ON t2.id=t1.t2_id 
       WHERE t1.id>5

3 个答案:

答案 0 :(得分:18)

有几种方法可以做到这一点。一种方法是这里是黑客。

How can I rewrite this SQL into CodeIgniter's Active Records?

另一种方式很简单。

$this->db
        ->select('ID')
        ->from('table2')
        ->order_by('id')
        ->limit('5');   

$subquery = $this->db->_compile_select();

$this->db->_reset_select(); 

$query  =       $this->db
                    ->select('t1.name')
                    ->from('table1 t1 ')
                    ->join("($subquery)  t2","t2.id = t1.t2_id")
                    ->get('table1 t1');

关于它的一些观点。
您必须在子查询中使用from子句,因为get运行查询 在codeigniter 2中,无法访问_compile_select和_reset_select,因为它们是受保护的方法 您可能必须在system / database / DB_active_rec.php

中的两个方法之前删除关键字

This文章也很有用。

答案 1 :(得分:2)

在CI3中,只需使用第四个参数进行转义

$this->db->from('table')
->join('SELECT id from table2 where something=%s) as T2'),'table.id=T2.id', 'LEFT',NULL)
->get()->row();

不要忘记在子查询中转义参数以避免SQL注入。

答案 2 :(得分:0)

此库可以帮助您使用查询构建器的子查询查看此库的文档

sub query with query builder