sqlite 在插入记录时自动记录插入记录时间:
创建表时加入:
create table t1( id integer primary key,node_addr int,channel_id int,value int,date timestamp not null defaultCURRENT_TIMESTAMP)
插入数据后发现不是系统时间而世界时间。
修改成如下:
create table t1( id integer primary key,date timestamp not null default (datetime('now','localtime'))) 再次插入数据已经时系统时间了
原文链接:https://www.f2er.com/sqlite/199767.html创建表时加入:
create table t1( id integer primary key,node_addr int,channel_id int,value int,date timestamp not null defaultCURRENT_TIMESTAMP)
插入数据后发现不是系统时间而世界时间。
修改成如下:
create table t1( id integer primary key,date timestamp not null default (datetime('now','localtime'))) 再次插入数据已经时系统时间了