赞
踩
在mysql中,对某个字段进行求和可以用sum()
select sum(score) from student_score where s_id=1
使用sqlalchemy进行求和:
from sqlalchemy import func
score = db.session.query(func.sum(StudentScore.score)).filter(StudentScore.id==1).scalar()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。