sqlalchemy

count:sql

from sqlalchemy import func

# count User records, without
# using a subquery.
session.query(func.count(User.id))

# return count of user "id" grouped
# by "name"
session.query(func.count(User.id)).\
        group_by(User.name)

from sqlalchemy import distinct

# count distinct "name" values
session.query(func.count(distinct(User.name)))

下面展現一個綜合的:session

self.orm.session.query(NiuceModel.level,func.count(BugDetail.id).label('count')).filter(and_(BugDetail.app_id == app_id,NiuceModel.id == BugDetail.bug_name)).group_by(NiuceModel.level).all()

 

 

..app

相關文章
相關標籤/搜索