Python:受cursor.execute(“ SELECT…)影响的行数

Python:受cursor.execute(“ SELECT…)影响的行数,第1张

Python:受cursor.execute(“ SELECT…)影响的行数

尝试使用

fetchone

cursor.execute("SELECt COUNT(*) from result where server_state='2' AND name LIKE '"+digest+"_"+charset+"_%'")result=cursor.fetchone()

result
将包含一个元素为的元组
COUNT(*)
。因此找到行数:

number_of_rows=result[0]

或者,如果您愿意一口气做到这一点

cursor.execute("SELECt COUNT(*) from result where server_state='2' AND name LIKE '"+digest+"_"+charset+"_%'")(number_of_rows,)=cursor.fetchone()

PS。最好尽可能使用参数化的参数,因为它可以在需要时自动为您引用参数,并防止sql注入。

参数化参数的正确语法取决于您的python /数据库适配器(例如mysqldb,psycopg2或sqlite3)。看起来像

cursor.execute("SELECt COUNT(*) from result where server_state= %s AND name LIKE %s",[2,digest+"_"+charset+"_%"])(number_of_rows,)=cursor.fetchone()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5647766.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存