如何在sqllite数据库上使用sql语句以UTC格式插入当前日期.我找到了NOW功能但是它的格式是什么?这将在移动设备上,因此每个人都有不同的区域设置,但是,我需要一个标准的时间格式,因为设备会将日期与我的服务器进行比较.
SELECT DATETIME(‘now’)返回当前的UTC日期时间.请参见
Date And Time Functions.您可以将DATETIME DEFAULT CURRENT_TIMESTAMP与列声明一起使用.
原文链接:https://www.f2er.com/sqlite/197546.htmlFormat 11,the string ‘now’,is
converted into the current date and
time as obtained from the xCurrentTime
method of the sqlite3_vfs object in
use. Universal Coordinated Time (UTC)
is used
对于“已修改”字段,您可以使用触发器.