在Neo4j中加载CSV并将时间戳转换为long

时间:2016-06-30 18:37:43

标签: sql database postgresql csv neo4j

我想将数据从PostgreSQL数据库上传到Neo4j数据库,我的一些行是毫秒精度时间戳。这样做时(如果使用LOAD CSV),如何将它们转换为(至少是第二精度)长度?

1 个答案:

答案 0 :(得分:0)

1970-01-01以来的毫秒数:

select round(extract(epoch from now()) * 1000)::bigint;
     round     
---------------
 1467313443460