我对python和一般编程还不熟悉。这段代码最终将用于更大的应用程序。我为任何错误提前道歉。我试图从postgresql数据库的一个表中进行一个简单的查询。唯一的结果是没有。即使我知道那里有数据。提前感谢您的帮助。
import psycopg2
def connect():
"""Connects to the database so you can query the stats you require"""
conn= psycopg2.connect("dbname='Nascar_Stats' user='postgres' \
host='localhost' password='xxxxxxxx'")
print('Connected to DB')
cur = conn.cursor()
cur.execute("SELECT 'Track_Length' FROM t_tracks \
WHERE 'Track_ID' = 'Daytona';")
length = cur.fetchone()
print('Track Length = ', length)
conn.close()
最佳答案
问题是Track_Length
和Track_ID
周围的引号。由于使用引号,列名当前被解释为实际字符串,导致字符串Track_ID
和Daytona
之间的比较不满意。这将导致0行匹配查询并获取length
值。
删除列名周围的单引号:
cur.execute("""
SELECT Track_Length
FROM t_tracks
WHERE Track_ID = 'Daytona'
""")
关于python - psycopg2查询返回无,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47746652/