copy
备份
copy (select * from tablename)to filename-xxx.csv with csv
执行时末尾不需要分号,with csv 表示 格式为csv ,with csv header 表示表头一起
如果要保存为 txt 格式,则需要添加分割符号,txt 的分隔符可以自己定义,如逗号 WITH (DELIMITER ‘,’) 或空格 WITH (DELIMITER ’ ') ;那么导入时,就要指定相应的分隔符
导入
\copy testa(status) from testa-2021-05-09.csv with csv header
如果报错:
extra data after last expected column(最后期望字段后有额外数据),意思是 csv 文件中的所有字段都要 copy 进去,可以删除 csv 中其他字段即可
需求方案
1、只恢复某个表的某几个字段的值
创建一个临时表,根据条件关联更新即可
创建表:create table testa_bak( like testa)
拷贝数据:\copy testa_bak from testa-2021-05-09.csv with csv header
更新数据:update testa set status = b.status from
(select t.id,tk.status from testa_bak tk join testa t on tk.id = t.id) b
where b.id = testa.id
pg 表的复制
仅复制表的结构,不包括约束
create table testa_bak( like testa)
包括约束及其他信息
create table testa_bak( like testa including all )