Cross join in codeigniter?
activerecord, codeigniter, php
Solution
Solution for cross join in codeigniter:
$this->db->join('tableTwo as b','true');
$result = $this->db->get('tableOne as a')->result();
Problem
I'm trying this ``` $this->db->join('tableTwo as b','','CROSS'); $result = $this->db->get('tableOne as a')->result(); ``` Some solution?