sqlite datetime unixepoch和ms

时间:2014-06-17 14:39:23

标签: sqlite datetime

我在unixepoch中有一个日期时间值,但也有ms。任何人都知道如何打印时间的字符串版本WITH毫秒? 即。

Field value is 1401795533345

所以要获取我使用的字符串,

select datetime(MeasureTime/1000,  'unixepoch') from Stats
I get 2014-06-03 11:38:53
but Im not able to get the 345ms printed.

1 个答案:

答案 0 :(得分:1)

改为使用strftime

SELECT strftime('%Y-%m-%d %H:%M:%f', MeasureTime/1000, 'unixepoch') FROM Stats