SQLite将默认时间戳存储为unixepoch



定义关系时,我希望在插入时将属性更新为时间戳。例如,我现在有一个工作表

CREATE TABLE t1(
id INTEGER PRIMARY KEY AUTOINCREMENT,
time TIMESTAMP
DEFAULT CURRENT_TIMESTAMP,
txt TEXT);

这是在插入时更新时间戳,例如,insert into t1 (txt) values ('hello')添加行1|2012-07-19 08:07:20|hello|。但是,我想用unixepoch格式格式化这个日期。

我看过文件,但不清楚。例如,我将表关系修改为time TIMESTAMP DEFAULT DATETIME('now','unixepoch'),但出现错误。在这里,和文档中一样,now是我的时间字符串,unixepoch是修饰符,但它不起作用。有人能帮我如何将其格式化为unixepoch时间戳吗?

使用strftime:

sqlite> select strftime('%s', 'now');
1342685993

CREATE TABLE中使用它,如下所示:

sqlite> create table t1 (
   ...> id integer primary key,
   ...> time timestamp default (strftime('%s', 'now')),
   ...> txt text);
sqlite> insert into t1 (txt) values ('foo');
sqlite> insert into t1 (txt) values ('bar');
sqlite> insert into t1 (txt) values ('baz');
sqlite> select * from t1;
1|1342686319|foo
2|1342686321|bar
3|1342686323|baz

请参阅https://www.sqlite.org/lang_createtable.html#tablecoldef

如果列的默认值是括号中的表达式,则对于插入的每一行和新行中使用的结果,都会对该表达式求值一次。

注意"timestamp"不是SQLite已知的数据类型(请参阅此处的列表)。strftime()生成的默认值实际上会存储为Text。

如果将值存储为数字而不是字符串很重要,请将字段声明为Integer,并在混合中添加一个CAST(),如下所示:

create table t1(
...
ts_field integer(4) default (cast(strftime('%s','now') as int)),
...
);

确实是strftime,它也可以这样使用:

SELECT strftime('%s', timestamp) as timestamp FROM ... ;

给你:

1454521888

"timestamp"表列甚至可以是一个文本字段,使用current_timestamp作为DEFAULT。

无结构时间:

SELECT timestamp FROM ... ;

给你:

2016-02-03 17:51:28

相关内容

  • 没有找到相关文章

最新更新