gpt4 book ai didi

sqlite - 在 SQLite : Can I use strftime(. 中存储我的日期(毫秒)?

转载 作者:行者123 更新时间:2023-12-03 15:46:02 33 4
gpt4 key购买 nike

我将我的日期存储在 SQLite 中的一个数据类型为 INTEGER 的列中。我正在存储自 1970 年以来的毫秒数。

例如:

  date (long)       other columns ...
-----------------------------------------
1407297600000 ...
1407211200000 ...
1407124800000 ...

我的问题是:在这种情况下如何使用 strftime()?
如果不是,我应该使用 TEXT 作为列类型??

运行这个:

 select strftime('%Y-%m', date) from my_table;

正在扔无意义的东西:

  strftime('%Y-%m', date)
-----------------------------------------
1968-19
1968-19
1968-19

最佳答案

除非您另有说明,否则 strftime() 认为这些数字是儒略日值 - 与 Unix 纪元毫秒非常不同。

您需要转换为秒,并告诉 strftime() 这些是 Unix 纪元编号:

select strftime('%Y-%m', date / 1000, 'unixepoch');

请参阅 SQLite Date and Time Functions 中的修饰符部分文档。

关于sqlite - 在 SQLite : Can I use strftime(. 中存储我的日期(毫秒)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25233125/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com