Код: Выделить всё
$this->db->select('*');
$this->db->from('quotes');
$this->db->join('quotes_detail', 'quotes_detail.id_rfq = quotes.id_rfq');
$this->db->join('clients', 'clients.id = quotes.id_company');
$this->db->limit(10,1);
$query = $this->db->get();
$result = $query->result();
return $result;
может ли кто-нибудь мне с этим помочь? Спасибо.
Подробнее здесь: https://stackoverflow.com/questions/235 ... cord-limit
Мобильная версия