2 回答

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊
試試這個(gè)
public function getPendingPayments() {
$this->db->where('is_paid', 0);
$this->db->where('is_installment', 0);
$this->db->group_by('party');
$this->db->order_by('bill_date', 'asc');
if($this->db->num_rows() < 1){
return false;
}else{
return $this->db->get('bills')->result();
return $this->db->get('bills')->result();
}

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊
經(jīng)過(guò)調(diào)查,我發(fā)現(xiàn)手動(dòng)執(zhí)行查詢(xún)時(shí)mysql出現(xiàn)錯(cuò)誤。
所以我only_full_group_by
通過(guò)在 SQL Server 中執(zhí)行這一行來(lái)全局刪除
SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
- 2 回答
- 0 關(guān)注
- 130 瀏覽
添加回答
舉報(bào)