标签:
1.将查询结果导入某张表
create table file1(
a integer,
b character(5)
);
insert into file1(a,b) select a,b from view
2.导出
导出之前为防止中文乱码,设置一下数据库编码
set client_encoding=‘GBK‘;
使用copy 命令
执行命令copy file1to ‘/home/file.csv‘ with csv header;
标签:
原文地址:http://www.cnblogs.com/woca/p/4620868.html