gpt4 book ai didi

php - 使用 codeigniter 更新查询中的 CONCAT

转载 作者:行者123 更新时间:2023-11-29 06:58:02 27 4
gpt4 key购买 nike

我想通过连接列“id”和“created_at”来更新列“trackId”。我已尝试以下查询但不起作用。

$data = array();

$data['ip'] = $ip;
$data['updated_at'] = time();
$data['trackId'] = "CONCAT(id, created_at)";

$this->db->where('id', 123)->update(MY_TABLE, $data);

如有任何帮助,我们将不胜感激。

最佳答案

我得到了答案。经过@Nawin 的建议。

$data = array();

$data['ip'] = $ip;
$data['updated_at'] = time();
$this->db->set('trackId', "CONCAT(id, created_at)", FALSE);

$this->db->where('id', 123)->update(MY_TABLE, $data);

它对我来说工作得很好。

关于php - 使用 codeigniter 更新查询中的 CONCAT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44820939/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com