0
我需要比較不同行中的兩列l_area和d_area。我需要使用mysql來比較不同行中的兩個不同列
需要輸出代銷表的結果,如果l_area第1行中的第2行
下面等於d_area是我的模型,但其檢查同一行
public function return_loads()
{
$where='d_area=l_area';
$this->db->select('*');
$this->db->from('consignment');
$this->db->where('consignment.status',0);
$this->db->where($where);
$query = $this->db->get();
return $query;
}
你能通過打印查詢顯示生成的查詢嗎? –
以及爲什麼不使用$ where ='d_area = l_area AND consignment.status = 0'; –