不从数据库中提取数据

时间:2018-05-25 08:50:36

标签: php database codeigniter project

我正在尝试从其他人表中获取数据,但是当我加入serviceplan表时,查询结果为空,但是当我删除serviceplan表时,它的数据被完美地删除了。

以下是我的模型的代码(没有serviceplan table-working)

public function send_mail() {
    // $user_id=$this->session->userdata('user_id');

    $query=$this->db->select('*, employee.name_emp as emp_name, customer.name as cust_name, servicetype.name_set as s_name',
        'serviceplan.price as p_rice')->from('appointment')
        // ->where('id_app',$appointment_id)
        ->join('customer', 'customer.id= appointment.name_app')
        ->join('servicetype', 'servicetype.id_set= appointment.sertype')
        ->join('employee', 'employee.id_emp= appointment.emp')
        // ->join('serviceplan', 'serviceplan.id_sep= appointment.price_app')
        ->get();

    echo $this->db->last_query();
    exit();        
    return $query->result();
}

2 个答案:

答案 0 :(得分:0)

普通连接或内连接仅获取两个表中共有的行。因此,在您的情况下,serviceplan表中没有匹配的条件。

验证它。或者查看您的要求并尝试使用leftjoin代替join

另见:Difference between joins

答案 1 :(得分:0)

您可以使用codeigniter尝试这个简单的连接表查询,如下所示:

$email='myEmail@test.com';
$this->db->select('*');
$this->db->from('table1');
$this->db->where('table1.email',$email);
$this->db->join('table2', 'table1.email = table2.email');
$query = $this->db->get();
$assignedData=$query->result_array();