CodeIgniter 查询:如何将列值移动到同一行中的另一列并将当前时间保存在原始列中?

CodeIgniter query: How to move a column value to another column in the same row and save the current time in the original column?(CodeIgniter 查询:如何将列值移动到同一行中的另一列并将当前时间保存在原始列中?)
本文介绍了CodeIgniter 查询:如何将列值移动到同一行中的另一列并将当前时间保存在原始列中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的 db 表中,我有两个日期时间列:LastCurrent.这些列允许我跟踪某人上次使用有效登录名登录我正在构建的服务的时间.

In my db table, I have two datetime columns: Last and Current. These column allow me to keep track of when someone last used a valid login to the service I am building up.

使用 CodeIgniter 的活动记录,是否可以更新一行,以便 Last 值接收 Current 值,然后是 Current 值是否替换为当前日期时间?

Using CodeIgniter's active record, is it possible to update a row so that the Last value receives the Current value AND then the Current value is replace with the current datetime?

推荐答案

试试这样:

$data = array('current_login' => date('Y-m-d H:i:s'));
$this->db->set('last_login', 'current_login', false);
$this->db->where('id', 'some_id');
$this->db->update('login_table', $data);

特别注意 set() 调用的第三个参数.false 防止 CodeIgniter 引用第二个参数——这允许将值视为表列而不是字符串值.对于不需要特殊处理的任何数据,您可以将所有这些声明集中到 $data 数组中.

Pay particular attention to the set() call's 3rd parameter. false prevents CodeIgniter from quoting the 2nd parameter -- this allows the value to be treated as a table column and not a string value. For any data that doesn't need to special treatment, you can lump all of those declarations into the $data array.

以上代码生成的查询:

UPDATE `login_table`
SET last_login = current_login, `current_login` = '2018-01-18 15:24:13'
WHERE `id` = 'some_id'

这篇关于CodeIgniter 查询:如何将列值移动到同一行中的另一列并将当前时间保存在原始列中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)