Codeigniter: Select from multiple tables

前端 未结 7 1820
闹比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:49

    $SqlInfo="select a.name, b.data fromtable1 a, table2 b where a.id=b.a_id";
    $query = $this->db->query($SqlInfo);
    

    try this way, you can add a third table named as c and add an 'and' command to the sql command.

提交回复
热议问题