我正在将数据复制到PostgreSQL中,并收到以下错误消息
我使用的代码是
COPY gdp FROM 'C:\Program Files\PostgreSQL\9.3\data\gdp.csv' DELIMITER ',' CSV HEADER;
收到错误消息:
ERROR: extra data after last expected column
SQL state: 22P04
Context: COPY gdp, line 2: ""Abilene, TX",5.90,0.00,-0.54,-0.09,0.09,0.00,0.00,0.00,1.19,-0.07,0.52,0.00,0.24,0.00"
我已经检查了第2行的值,并且变量中没有其他空格。我不知道导致此错误的列。
这是我到目前为止为此表设置的列。我是PostgreSQL的新手,所以可以提供的任何帮助都将受到赞赏。
msa字符不为空,
gdp_perc数字
natural_resource_mining数字
构造数字
durable_goods_manf数字
non_durable_manf数字
交易数字
transportation_utilities数字
信息数字
finance_property数字
professional_business_serv数字
education_medical数值
art_food_entertainment数字
gov数字
CONSTRAINT gdp_pkey主键(msa)
答案 0 :(得分:0)
对不起,我只是注意到省略了一列。现在一切都很好。