codeigniter join select as
问题 I have 2 tables in my database wich i need to join. 1 table is the artikelen table and the other one is the collecties table. I currently have. $this->db->select('*'); $this->db->from('collecties'); $this->db->join('artikelen', 'artikelen.collecties_id = collecties.id'); It gives the right result but all the double fields (collecties has a title field and artikelen has a title field) will become one (it returns the artikelen.title field), and i cant access the row of the other table (the