我们如何更新下面多个表中使用的方法显示的代码?输出是表,其中“ 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);