command line psql export table to csv with date code example
Example: postgresql export output table as a csv
COPY table_name TO 'file_name.csv' DELIMITER ',' CSV HEADER;
COPY table_name TO 'file_name.csv' DELIMITER ',' CSV HEADER;