不能找出错误W.R.T select查询这里在python psycopg2 (postgresql query)
cursor = con.cursor()
postgreSQL_select_Query = """select ticker, timestamp, close from usstockseod u where u.ticker = %s;"""
cursor.execute(postgreSQL_select_Query,[ticker,])
close_prices = cursor.fetchall()
c_f = pd.DataFrame(close_prices, columns=['ticker','timestamp','close'])
return c_f```
Ticker为单个值。我正试图学习如何使用Psycopg2编写参数化查询,因为语法不明显,但找不到好的信息来源。当我在笔记本中重新运行代码时,问题自行解决-因此先前的变量数据可能首先导致了问题。谢谢…