标签: sqlite
我有Sqlite数据库,其中包含日期列的表格,此列内容的日期值如Fri Dec 01 18:54:58 GMT+02:00 2017,我希望将此值转换为Unix timestamp,我尝试使用此问题解决此问题strftime函数我获得null值。
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
update Table set createDate=strftime('%s',createDate)*1000 where id=1
Sqlite Documentation