简体   繁体   中英

using psql to export to a csv in python

I have a very simple psql command to export a table to a csv

\COPY report TO '\path\reprot.csv' DELIMITER ',' CSV HEADER;

how can I run this command in python?

*I have psycopg2 installed

您可以使用python的csv模块

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM