如何在Python中存储计数值

发布于 2024-11-01 13:37:51 字数 277 浏览 2 评论 0原文

我想根据两个表的总行数来比较它们。所以我使用 count(*) 来计算两个表中的总行数。

我的代码是:

cur1.execute ("""SELECT COUNT(*) FROM mytable;""")

为了存储此查询返回的总计数,

我使用了

row = cur1.fetchone()

 result1 =  row[0] 

但它没有帮助。有人可以建议我解决方案吗?

I want to compare two tables based on their total number of rows. So i use count(*) to count the total number of rows in both table.

My code is:

cur1.execute ("""SELECT COUNT(*) FROM mytable;""")

In order to store the total count return by this query,

I use

row = cur1.fetchone()

 result1 =  row[0] 

but it didn't help. Can anyone suggest me the solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

む无字情书 2024-11-08 13:37:51
cursor.fetchone() 

直接给你结果..所以不需要取它的第零个元素..当你说:

row = cur1.fetchone()
cursor.fetchone() 

gives you the result directly..so no need to take its zeroeth element..what you want is given to you directly when you say:

row = cur1.fetchone()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文