这是我的查询
在这个查询中...我想加入 tow table(table1, table2) 作为第二个查询
第一次查询
$q = $this->db->select('*')
->from('table')
->limit($limit, $offset)
->order_by($sort_by, $sort_order);
我想在上面的查询中进行这样的向下工作,但是在上面的查询中是否可行..当不更改查询的布局时....?
第二个查询这个连接工作正常我希望第一个查询与第二个查询相同
$this->db->select('*');
$this->db->from('table1');
$this->db->join('table2', 'table1.t_id', 'table2.id');
$this->db->limit(9);
return $this->db->get()->result();