私は sql コマンドを持っています。それは機能しますが、Codeigniter では使用できません。
phpmyadminで使用すると動作します
online_visitors.page_id 、 hotels.hotel_name 、 count(online_visitors.page_id) を count_visit FROM として選択
online_visitors
しhotels
ます。 page_id asc
しかし、codeigniter コードで使用したい場合はできません
$this->db->select("page_id , hotel_name");
$this->db->from("hotels");
$this->db->join("online_visitors");
$this->db->where("is_bot", 0);
$this->db->where("page_type", 'hotel');
$this->db->group_by("page_id");
$this->db->order_by("page_id");
$this->db->get();