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

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

如何使用 codeigniter 查詢獲取每個(gè)產(chǎn)品的平均評(píng)分?

如何使用 codeigniter 查詢獲取每個(gè)產(chǎn)品的平均評(píng)分?

PHP
qq_笑_17 2023-10-21 17:17:41
我有評(píng)級(jí)表,其中對(duì)用戶給出的每個(gè)產(chǎn)品進(jìn)行評(píng)級(jí),我正在檢索所有評(píng)級(jí)記錄,但同時(shí)我想獲得基于每個(gè)產(chǎn)品的平均評(píng)級(jí),但我無法獲得輸出詢問 :$this->db->select('ratings.*');$this->db->select('select AVG(ratings) as avg_rating from ratings group by product_id');$this->db->from('ratings');$this->db->join('users','users.id=ratings.user_id');$this->db->get()->result();評(píng)級(jí)表id   user_id product_id  rating  1      4         1         4 2      5         2         43      6         1         24      7         4         4預(yù)期輸出:id   user_id product_id  rating          avg rating1      4         1         4               3 2      5         2         4               43      6         1         2               34      7         4         4               4
查看完整描述

1 回答

?
夢(mèng)里花落0921

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超6個(gè)贊

使用左連接和選擇平均值從表ratings獲取數(shù)據(jù)。


Codeigniter 的join () 函數(shù)允許您編寫選擇部分而不是表名,但您需要將其放在括號(hào)中:


$this->db->select('t1.*, t2.avg_rating, t3.*');

$this->db->from('ratings t1');

$this->db->join('

                  (select product_id, avg(rating) as avg_rating 

                   from ratings 

                   group by product_id)  t2','t2.product_id=t1.product_id','left'

                );

$this->db->join('users t3','t3.id=t1.user_id','left'); 

$this->group_by('t1.userid')

$this->db->get()->result();

生成:


SELECT t1.*, t2.avg_rating, t3.*

FROM ratings t1

left join 

        (select product_id, avg(rating) as avg_rating from ratings group by product_id)  t2 

    on t2.product_id=t1.product_id

left join users t3

    on t1.user_id = t3.id

group by t1.user_id

并按照您的預(yù)期輸出。


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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