2
非常簡單的問題,必須多次討論,但我仍然無法獲得$ this-> db-> last_query();的結果。
$this->db->select('count(*) as totalverified,res_sales.upduser, employee.name');
$this->db->from('res_sales');
$this->db->join('employee','employee.user_id = res_sales.upduser');
$this->db->where('date>=', $fromdate);
$this->db->where('date<=', $todate);
$this->db->where('verificationnumber<>', '');
$this->db->where('verificationnumber<>', NULL);
$this->db->group_by('res_sales.upduser');
$this->db->group_by('employee.name');
$q = $this->db->get();
$str = $this->db->last_query();
print_r($str);
if ($q->num_rows() > 0)
{
return $q->row();
}
return FALSE;
上面是我的模型函數中的代碼。我無法像預期的那樣得到結果,想要查看後端運行的查詢。
謝謝。 丹麥語
加上'死;'或''你的print_r($ STR)後exit''線 –