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

创建一临时表:

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

参考

原文地址:https://www.cnblogs.com/lwmp/p/7423031.html