我想通過使用codeigniter的活動記錄從表中獲取具有一些外鍵的數據。我沒有得到任何結果。我的問題是我要錯的地方是我的模型代碼。Codeigniter中的條件
public function fetch_customer()
{
$s = 'customer.stb_id';
$w_array = array('set_top_box.stb_id' => $s);
$customers = $this->db->select('customer.c_name,customer.acc_no,customer.stb_id,set_top_box.stb_no,customer.mobile_no,customer.subscription_amount,customer.c_status')
->from('customer,set_top_box')
->where($w_array)
->get();
return $customers->result();
}
條款你不能在'從()'你應該使用'多個表加入()'爲此。例如('customer c'); $ this-> db-> join('set_top_box stb','stb.stb_no = c.stb_id')' – AdrienXL
可以使用多於一個從()AdrienXL –