我需要使用聯接操作。這是我的代碼:CodeIgniter失敗聯接操作
$this->db->from('d');
$this->db->where('id',$v);
$this->db->join('p', 'p.id = d.id');
$deal=$this->db->get();
唯一的例外是:
Server returned HTTP response code: 500
表是:
p(id,home) and d(id, p.id(this value is from p table),school);
有什麼不對?