📜  如何在 codeigniter 中命名另一个表 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:07.142000             🧑  作者: Mango

代码示例1
$this->db->select('customer_company_reviews.* ,users.*');
$this->db->join('users', 'users.id = customer_company_reviews.customer_company_reviews_author');
$this->db->where('customer_company_reviews_company_id', $id);
$this->db->from('customer_company_reviews');
$this->db->order_by('customer_company_reviews_id', 'desc');
$this->db->limit(1);