第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在添加 group_by() 時(shí)調(diào)用布爾值成員函數(shù) result()

在添加 group_by() 時(shí)調(diào)用布爾值成員函數(shù) result()

PHP
拉莫斯之舞 2023-10-15 15:35:31
我正在使用 codeigniter 創(chuàng)建一個(gè)項(xiàng)目,所有模塊在本地主機(jī)中都工作正常,但是當(dāng)我在 AWS 上上傳文件時(shí),它顯示錯(cuò)誤,主要是不起作用,如果我刪除group_by()此功能,它工作正常,請(qǐng)幫助,我添加了一些代碼片段和表結(jié)構(gòu)。模型: public function getPendingPayments() {    $this->db->where('is_paid', 0);    $this->db->where('is_installment', 0);    $this->db->group_by('party'); // here if I remove this line, everything works fine    $this->db->order_by('bill_date', 'asc');    return $this->db->get('bills')->result();}控制器:$data['UNPAID_CLIENTS'] = $this->Payments_model->getPendingPayments();表結(jié)構(gòu):錯(cuò)誤:
查看完整描述

2 回答

?
FFIVE

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();

}


查看完整回答
反對(duì) 回復(fù) 2023-10-15
?
慕婉清6462132

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ò)誤。 

https://img1.sycdn.imooc.com/652b96c1000163ee13650057.jpg

所以我only_full_group_by通過(guò)在 SQL Server 中執(zhí)行這一行來(lái)全局刪除

SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));


查看完整回答
反對(duì) 回復(fù) 2023-10-15
  • 2 回答
  • 0 關(guān)注
  • 130 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)