【发布时间】:2018-01-12 21:37:28
【问题描述】:
我想将 csv 文件导入到从 csv 文件第 9 行开始的表中。如何在 postgresql 中指定这个条件?
前 8 行有一堆不相关的文字描述下面的数据。这是导入 Excel 的文件的屏幕截图。
这是我试图将数据插入到我的数据库中的表。
CREATE TABLE trader.weather
(
station text NOT NULL,
"timestamp" timestamp with time zone NOT NULL,
temp numeric(6,2),
wind numeric(6,2)
)
【问题讨论】:
标签: postgresql csv import