gpt4 book ai didi

python - 如何在查询 Python 中按名称获取字段?

转载 作者:行者123 更新时间:2023-11-28 19:54:00 25 4
gpt4 key购买 nike

我在 Python 脚本中使用 Mysql 连接。

如何根据名称从表中获取结果?

cursor = conn.cursor()
cursor.execute("SELECT * FROM local")

现在我通过索引来做到这一点:

results = cursor.fetchall()
for row in results:
print row[0] //

相反,我想通过如下名称获取字段:print row["name"]

最佳答案

如果你正在使用 mysql-connector,试试这个

cursor = conn.cursor(dictionary=True)
cursor.execute("SELECT * FROM myTable")
results = cursor.fetchall()
for row in results:
print( row )

如果 dictionary 为 True,则游标将行作为字典返回。

关于python - 如何在查询 Python 中按名称获取字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40840283/

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