Codeigniter: Select from multiple tables

前端 未结 7 1764
闹比i
闹比i 2020-12-30 11:23

How can I select rows from two or more tables?

I\'m setting default fields for a form, and I need values from two tables...

My current code reads:

         


        
7条回答
  •  孤城傲影
    2020-12-30 11:54

    The example in the User Guide should explain this:

    $this->db->select('*'); // <-- There is never any reason to write this line!
    $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
    

    See the whole thing under Active Record page in the User Guide.

提交回复
热议问题