如何将查询到的CSV文件保存在PeckCopg2中

2022-04-14 00:00:00 python postgresql csv psycopg2

问题描述

我正尝试在本地.csv中保存使用python对PostgreSQL数据库执行的查询的结果(使用心理拷贝g2)。

我可以在控制台中打印查询结果,但无法将其导出为CSV文件。

我已尝试使用COPY_TO函数,但即使使用documentation我也无法理解:

    # Retrieve the records from the database with query
    cursor.execute("SELECT col1 FROM myDB.myTable WHERE col1 > 2")
    records = cursor.fetchall()

    # Save to csv with copy_to
    io = open('copy_to.csv', 'w')
    cursor.copy_to(io, 'records', ',')
    print("Copied records from query into file object using sep = ,")
    io.close()

这会导致错误"ological Copg2.ProgrammingError:Relationship"Record"is"。

是否有更好的方法将查询结果存储在可以传递给Copy_to的本地表中?谢谢你的建议!


解决方案

我做了更多的研究,这里有另一个可能更有效的解决方案:

``` python
import psycopg2

#note the lack of trailing semi-colon in the query string, as per the Postgres documentation
s = "'SELECT col1 FROM myDB.myTable WHERE col1 > 2'"

conn = psycopg2.connect...
db_cursor = conn.cursor()

SQL_for_file_output = "COPY ({0}) TO STDOUT WITH CSV HEADER".format(s)

WITH Open(filepath/name, 'w') as f_output:
    cur.copy_expert(SQL_for_file_output, f_output)

conn.close()
```

相关文章