I want to export a Postgres database into a CSV file. Is this possible?
If it is possible, then how can I do this? I have seen that we can convert a particular table into
COPY tablename TO '/tmp/products_199.csv' DELIMITER ',' CSV HEADER;
check this out