6

我首先将数据添加到表中,像这样events的字段exceptions

function events_exceptions($rec_id, $evt_id)
{
//$evt_id = 1;

$this->db->where('record_id', $rec_id);
$this->db->update('events', array('exceptions' => $evt_id));
}

这会给我

exceptions
1

如果我再次运行它,$evt_id = 2我会得到

exceptions
2

等等。

我想实际将新数据附加到该字段而不是更新,所以我会(注意逗号)

exceptions
1,2,3  //etc

我认为这可以通过调用 DB、读取行/字段的内容并通过 PHP 连接来完成 - 然后更新记录。但我想避免这样的开销。

有没有办法通过 MySQL 做到这一点CONCAT

谢谢你的帮助。

4

1 回答 1

15
$query = "UPDATE table1 SET field1 = CONCAT(ifnull(field1,''),'$extra') WHERE id = '$id'";
于 2011-05-08T04:07:09.787 回答