How can I export a table to .csv in Postgres, when I\'m not superuser and can\'t use the copy command?
.csv
copy
I can still import the data to postgres
COPY your_table TO '/path/to/your/file.csv' DELIMITER ',' CSV HEADER;
For more details go to this manual