APPLY FOR ONLINE Zend Framework Certification

                    
                        $this->db->select('*');
$this->db->from('blogs');
$this->db->join('comments', 'comments.id = blogs.id');
$query = $this->db->get();

// Produces: 
// SELECT * FROM blogs
// JOIN comments ON comments.id = blogs.id                    
                


Comment


Back to Top