我想更新表格中的两个字段。但它们分为两个不同的表格。我想在php codeIgniter中同时更新它们。
答案 0 :(得分:1)
如果要更新两个不同表中的两列,请使用以下查询。
$query="UPDATE table1,table2 SET table1.status=value , table2.status=value";
$this->db->query($query);
$this->db->update('table1');
if($this->db->affected_rows()=='2')
{
return TRUE;
}