在codeigniter中使用多个where条件更新表

时间:2017-07-14 09:48:36

标签: php mysql codeigniter

如果只匹配三个值,我必须更新表。尝试此操作时出现语法错误。可能是什么原因?

 $sql1="update target set updvalue='".$val3."'  where Id ='".$b."'" AND MId ='".$c."'" AND DID ='".$f."'";
 $res1=$this->db->query($sql1);

3 个答案:

答案 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);

如果不起作用,请告诉我。