使用codeigniter更新多个表

时间:2018-11-03 05:06:58

标签: php mysql codeigniter

我们如何更新下面多个表中使用的方法显示的代码?输出是表,其中“ where子句”中具有“ Unknown”列“ iv_subfeatures.id”。

$id=$this->uri->segment(3);
$data=array('iv_features.feature_name'=>$this->input->post('featurename'),
    'iv_subfeatures.subfeature_name'=>$this->input->post('subfeaturelocation')); 
$this->db->join('iv_subfeatures','iv_features.id=iv_subfeatures.feature_id');
$this->db->where('iv_subfeatures.id',$id);
$this->db->update('iv_features',$data);

0 个答案:

没有答案