PostgreSQL dump/restore
问题 I don't want to Dump the entire table but only certain records in a table in my dump file and later restore the same. P.S.: I want to do the same for more than 1 table in my database but dump it in a single file. Is this possible? If yes then how do i go about it? Thank in advance. 回答1: The COPY command? 回答2: Should be possible using Jailer. 回答3: create temp_tables from sqlquery sqlquery can be formed as projection like 'select columns from table ' then use pg_dump to dump all temporary