gpt4 book ai didi

python - 如何在python中打印计数表sql

转载 作者:太空宇宙 更新时间:2023-11-04 01:20:35 25 4
gpt4 key购买 nike

我试图在 python 中打印计数表,我写了这段代码:

count = cur.execute("SELECT COUNT(*) FROM %s;" str(table))
print count

所有打印结果都是 1,(认为 1 = 真),我如何打印我的 sql 命令的真实结果?

谢谢

最佳答案

您必须获取结果:

cursor = db.cursor()
count = cursor.execute("SELECT COUNT(*) FROM " + str(table))
db.commit()
print cursor.fetchone()[0]
cursor.close()

关于python - 如何在python中打印计数表sql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21510572/

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