如果只匹配三个值,我必须更新表。尝试此操作时出现语法错误。可能是什么原因?
$sql1="update target set updvalue='".$val3."' where Id ='".$b."'" AND MId ='".$c."'" AND DID ='".$f."'";
$res1=$this->db->query($sql1);
答案 0 :(得分:0)
$sql1="update target set updvalue='".$val3."' where Id ='".$b."' AND MId ='".$c."' AND DID ='".$f."'";
$res1=$this->db->query($sql1);
使用此
答案 1 :(得分:0)
我认为有很多“介于Id和AND之间,也就是说,你犯了一个错字。
答案 2 :(得分:0)
您可以使用Codeigniter查询构建器。
$this->db->where('Id',$b);
$this->db->where('MId',$c);
$this->db->where('DID',$f);
$upd_data['updvalue'] = $val3;
$res1=$this->db->update('target',$upd_data);
如果不起作用,请告诉我。