首页 > 代码库 > postgresql导出某张表的数据

postgresql导出某张表的数据

\copy 表名 to 路径 with csv

比如:

\copy dataset to /home/backup/dataset.csv with csv

 

路径需不需要加引号呢,,加不加呢。。。。我也不知道。。。。都试试吧。。。

 

 

导入CSV

COPY mytable FROM ‘/myfile.csv‘  WITH CSV  HEADER

postgres=# COPY vender(sid,vender_id,vender_name,connector,created_by,created_dt,version,del_flg)  
 from E:\Vendor.csv WITH CSV  HEADER;  

 

 

 

另一篇,觉得挺靠谱的。

http://blog.chinaunix.net/uid-7270462-id-3478360.html

postgresql导出某张表的数据