Home > database >  Postgresql database how to export the data table and import the data table
Postgresql database how to export the data table and import the data table

Time:11-28

Postgresql database how to export the data table and import the data table

CodePudding user response:

Export
Pg_dump -p port -u username -t table - f XXX. SQL database
  • Related