MySQL - 建议将数据附加到现有字段/记录?

时间:2011-05-08 03:59:33

标签: php mysql concatenation concat

我首先将数据添加到表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

这样做

感谢您的帮助。

1 个答案:

答案 0 :(得分:15)

$query = "UPDATE table1 SET field1 = CONCAT(ifnull(field1,''),'$extra') WHERE id = '$id'";