gpt4 book ai didi

php - 只需 1 个查询即可增加 View 表?

转载 作者:行者123 更新时间:2023-11-29 14:35:55 27 4
gpt4 key购买 nike

有没有办法为某些内容增加 View 表,或者如果不存在,则添加第一个 View 而不运行 2 个查询。这是我当前有效的代码。

function increment_views($id = null) {

if ($id !== NULL) {
$record = array('id' => $id, 'views' => 'views+1');
// check exists
$query = $this->db->get_where('views', array('id' => $id), 1, 0);
if ($query->num_rows() == 0) {
// if !exists, insert
$db_view_data = array(
'id' => $id,
'views' => '1'
);
$this->db->insert('views', $db_view_data);
} else {
// A record does exist, update it.
$this->db->where('id', $id);
$this->db->set('views', 'views+1', false);
$this->db->update('views');

}
// check it worked
if ($this->db->affected_rows() > 0) {
return true;
}
return false;
}
return false;
}

最佳答案

您可以使用重复键来实现此目的,如下所示:

$query = "INSERT into views(id,views)values($id,1) on DUPLICATE KEY UPDATE views=views+1;

希望这有帮助:)

关于php - 只需 1 个查询即可增加 View 表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9054041/

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