I want to select data from my database table with join query, but my it doesn\'t work.
My query:
$this->db->select(); $this->db->from(\'w
This will work:
$this->db->join('schedule', 'schedule.itemid = we.cid'); $this->db->where('we.isActive','Y'); $this->db->where('schedule.itemtype', 'testitem'); $this->db->get('we');