PostgreSQL 导出导入表中指定查询数据

前端之家收集整理的这篇文章主要介绍了PostgreSQL 导出导入表中指定查询数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.创建临时表

create table test_view as select * from test where date(to_timestamp(endtime))>='2012-09-02';

2.导出临时表数据为文本

copy test_view to '/home/postgres/test_view.txt' with delimiter as '|';

3.导入文件数据到数据库中指定表 delete from test; copy test from '/home/postgres/test_view.txt' with delimiter as '|';

原文链接:https://www.f2er.com/postgresql/196418.html

猜你在找的Postgre SQL相关文章