如何通過偏移和在下面的查詢perpage計數如何通過偏移量和per_page變量笨的方式連接查詢
$this->db->select('*');
$this->db->from($this->table1);
$this->db->join($this->table2, 'plot.location_id = locations.location_id');
$this->db->join($this->table3, 'plot.plot_type = plot_types.plot_id');
$this->db->join($this->table4, 'plot.user_id = admin.id');
$query = $this->db->get();
return $query->result();
這個問題已經回答和接受了,但我不明白你的代碼有什麼問題,它似乎沒問題。 –