有没有办法使用 postgres 在数据库中创建单个表的备份?如何?这也适用于pg_dump命令吗?
pg_dump
用于--table告诉pg_dump它必须备份哪个表:
--table
pg_dump --host localhost --port 5432 --username postgres --format plain --verbose --file "<abstract_file_path>" --table public.tablename dbname