我在模型中有这个查询:
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