モデルに次のクエリがあります。
public function Games() { $q = $this->db->select('games.id, games.title, games.slug, games.dev_id, games.dev, games.plat_id, games.plat'); $q = $this->db->from('games'); $q = $this->db->join('rates', 'games.id = rates.game_id'); $q = $this->db->select_avg('rates.rate'); $q = $this->db->get();
return $q->result();
}
私の目標は、 からすべてをリストし、利用可能な場合は からgames
平均を取得することです。これで、両方のテーブルにある行のみが表示されます。どうすればこれを解決できますか?rate
rates