Код: Выделить всё
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();
}
Подробнее здесь: https://stackoverflow.com/questions/112 ... ound-table
Мобильная версия