jeśli wersja <8.4.0
pg_dump -D -t <table> <database>
Dodaj -a
przed -t
jeśli chcesz tylko WSTAWKI, bez CREATE TABLE itp., aby ustawić tabelę w pierwszej kolejności.
wersja>=8.4.0
pg_dump --column-inserts --data-only --table=<table> <database>