使用psycopg2将postgres插入数字字段将取整

时间:2019-06-13 05:44:44

标签: postgresql psycopg2 psql

为什么psycopg2会这样?

我有一列时间戳数字

在psql中插入数字值可以正常工作:

     timestamp     
-------------------
 1557225241.304097
(1 row)

但是使用python psycopg2,它被四舍五入为:

     timestamp     
-------------------
 1557225241.35
(1 row)

使用时间戳字段类型的结果相同,并插入 to_timestamp({})):

2019-04-16 14:39:54.76

0 个答案:

没有答案