MySQLdb返回结果的平均值

时间:2013-04-04 23:16:22

标签: python mysql aggregate-functions mysql-python

它可以使用MySQL返回所选数据的平均值,但是我似乎无法使用MySQLdb这样做,我的代码如下

cursor = database.cursor() 
cursor.execute ("SELECT AVG(points) FROM table WHERE entry =%s AND id =%s", (e_id, g_id))
average = cursor.fetchone()
print average

有谁知道怎么做...?

编辑:我得到的错误是1064,“你的SQL语法有错误......

0 个答案:

没有答案