如何从CockroachDB中的纪元获取日期

时间:2019-03-18 18:00:43

标签: cockroachdb

我有一列,其中的时间戳存储在纪元中。我需要从纪元时间戳获取日期。例如对于epoch = 1552942715,我需要获取日期为1552867200。如何实现?

1 个答案:

答案 0 :(得分:0)

def handleSelection(self):
    .... logic for selecting the current row
    .. of the other widget

创建表样本,其中列为文本数据类型。

create table test (epoch text NULL);

如果该列的类型为int或任何其他数字,则将其强制转换为timestampz