数组 – 将数据COPY(导入)到PostgreSQL数组列中

前端之家收集整理的这篇文章主要介绍了数组 – 将数据COPY(导入)到PostgreSQL数组列中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何格式化(CSV?)文本文件,以便可以将其导入(使用COPY?)到Postgresql(8.4)表中的数组列中?

给出表testarray:

Column  |          Type           |
---------+-------------------------|
 rundate | date                    | 
 runtype | integer                 | 
 raw     | double precision[]      | 
 labels  | character varying(16)[] | 
 results | double precision[]      | 
 outcome | character varying(8)[]  |

COPY testarray from '/tmp/import.txt' CSV

import.txt的以下内容都不起作用:

2010/06/22,88,{{1,2},{3,4}},4}}
2010/06/22,1,2,3,4,4
2010/06/22,'{{1,4}}',4}}'
2010/06/22,'1,4',4'
COPY testarray from '/tmp/import.txt' CSV

2010-06-22,"{{1,4}}",4}}"
原文链接:https://www.f2er.com/postgresql/192159.html

猜你在找的Postgre SQL相关文章