我正在尝试在时间戳字段中插入空格。在表中,它定义为updt_ts timestamp NULL
。但是,我仍然收到以下错误:
ERROR: invalid input syntax for type timestamp: ""
CONTEXT: COPY dt_acct_stat_dim, line 1, column updt_ts: ""
对此错误有任何解决办法吗?
答案 0 :(得分:1)
根据错误消息,您正在使用copy
命令。
使用copy
命令时,可用的选项之一是指定空字符串:
copy
table_name
from
'/my/file.csv'
with (
format csv,
null ''
);