Sqlite将日期转换为Unix时间戳

时间:2018-03-25 17:15:20

标签: sqlite

我有Sqlite数据库,其中包含日期列的表格,此列内容的日期值如Fri Dec 01 18:54:58 GMT+02:00 2017,我希望将此值转换为Unix timestamp,我尝试使用此问题解决此问题strftime函数我获得null值。

知道如何在没有程序员语言的情况下使用Sqlite来解决这个问题吗?

使用的命令是update Table set createDate=strftime('%s',createDate)*1000 where id=1

Sqlite Documentation

0 个答案:

没有答案