Use below command to get only table data from a PostgreSQL table. It will not dump table create structure.
pg_dump --column-inserts --data-only --table="TableName" DatabaseName > DumpFileName.sql
Use below command to get only table data from a PostgreSQL table. It will not dump table create structure.
pg_dump --column-inserts --data-only --table="TableName" DatabaseName > DumpFileName.sql