尝试使用
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()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)