CI中的DB操作-----多表关联查询语法……

$cuslist1= $this->db->select(字段)->from(表名)->join(表名)->order_by(字段)->get()->result_array();
$config['total_rows'] = $this->db->count_all_results();//计算记录总数
public function edit($id){//修改编辑-----get_where()的用法第一个参数为表名,第二个参数为条件(字段名=>值)
    $this->db->select($this->id.','.$this->email.','.$this->des.','.$this->name.','.$this->site);
    $data = $this->db->get_where('client_list',array('id'=>$id))->result_array();
        return $data;
        }`

你可能感兴趣的:(CI中的DB操作-----多表关联查询语法……)