gpt4 book ai didi

python - 在execute psycopg2方法中调用SQL文件?

转载 作者:行者123 更新时间:2023-11-30 22:16:02 24 4
gpt4 key购买 nike

我想知道是否可以在

中使用一个大查询来调用 sql 文件
conn = psycopg2.connect('database')
cursor = conn.cursor()
cursor.execute( <bigQuery.sql> )

PS.:如果我将查询放入 .py 文件中并创建一个常量就可以了。但这不是我想做的。我想调用 execute 方法中定向的 .sql 文件

最佳答案

你有没有尝试过这样的事情:

conn = psycopg2.connect('database')
cursor = conn.cursor()
sql_file = open('/path/to/sql_statement.sql', 'r')
cursor.execute(sql_file.read())

关于python - 在execute psycopg2方法中调用SQL文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50077885/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com