gpt4 book ai didi

python-3.x - Python copy_expert 加载带有空值的数据时出现问题

转载 作者:行者123 更新时间:2023-11-29 12:50:00 26 4
gpt4 key购买 nike

我无法使用 copy_expert 将 csv 导入到 postgres 中的表中。错误是由于空值。

我在数据库中的字段类型是允许空值的。通过insert into手动插入证明成功

根据我目前的理解,这是因为 copy_expert 将空值转换为文本,这就是它在时间戳数据类型上失败的原因。但是,我无法找到将空值强制为空值的正确语法。下面的代码片段:

with open(ab, 'r') as f:
cur.copy_expert("""COPY client_marketing (field1,field2,field3) FROM STDIN DELIMITER ',' CSV HEADER""", f)

错误信息:

DataError:类型时间戳的无效输入语法:“”。感谢对脚本的任何帮助或为我指出正确的来源以继续阅读。

最佳答案

我可以通过添加 force_null (column_name) 来做到这一点。例如,如果 field3 是您的时间戳:

copy client_marketing (field1, field2, field3) from stdin with (
format csv,
delimiter ',',
header,
force_null (field3)
);

希望对您有所帮助。参见 https://www.postgresql.org/docs/10/sql-copy.html

关于python-3.x - Python copy_expert 加载带有空值的数据时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56624261/

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