可以通过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
答案 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)
$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)
此库可以帮助您使用查询构建器的子查询查看此库的文档