postgres export table to sql code example
Example 1: postgresql pg_dump
pg_dump -U user -d db_name -h 127.0.0.1 > dump.sql
Example 2: postgresql export database
// Command Prompt // it may be needed to update the PATH on cmd
pg_dump -U username dbname > filename.pgsql