douchongbc72264 2017-11-02 10:22
浏览 46
已采纳

where子句中的列'id'对于3个表Codeigniter是不明确的

I am currently doing a system. In the system, there's a module called manage resident; where the manage resident will get the information of the resident if it is single, married and have a child(first,middle and last name for example).

I've done the adding or create new resident part, I am now in edit resident part. When I click the edit resident, I encountered error

Column 'id' in where clause is ambiguous

I have 3 tables: resident, married and children. Resident ID is the foreign key of married, while Married ID is the foreign key of children table.

My data example for each table(column Primary key, foreign key, first_name, middle_name, last_name

Resident -> id, Testing, Testing, Testing
Married  -> Married_id, resident_id, Testing, Testing, Testing
Children -> id, married_id, Testing, Testing, Testing

Question: How can I get the children of the selected Resident? Then display it separately in my fields in my view.

Controller

 $id = $this->uri->segment(4);
 $get_children = $this->Crud_model->get_children($id);

Model

public function get_children($id){
        $this->db->select('*');    
        $this->db->from('resident');
        $this->db->where('id',$id);
        $this->db->join('married', 'resident.id = married.resident_id');
        $this->db->join('children', 'resident.id = children.married_id');
        $query = $this->db->get();
        return $query->row();
    }

View

 <?php $explode = explode(",",$children->first_name); ?>

<div class="form-group">
  <label>First Name</label>
  <input type="text" class="form-control" name="child_fname" id="child_fname"><?= $explode?>
</div>
  • 写回答

2条回答 默认 最新

  • dongxi3859 2017-11-02 10:48
    关注

    Whenever you join tables with where condition you should write each column with its reference table name.

    so change

    $this->db->where('id',$id);
    

    to

    $this->db->where('resident.id',$id);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据