vote up 0 vote down star

I want "DBSession.query(Article).group_by(Article.created.month).all()"

But this query can't using

How do I do this using SQLAlchemy?

flag

1 Answer

vote up 1 vote down check

assuming you db engine actually supports functions like MONTH(), you can try

import sqlalchemy as sa
DBSession.query(Article).group_by( sa.func.year(Article.created), sa.func.month(Article.created)).all()

else you can group in python like

from itertools import groupby

def grouper( item ): 
    return item.created.year, item.created.month
for ( (year, month), items ) in groupby( query_result, grouper ):
    for item in items:
        # do stuff
link|flag
wow, thank you!!!^^ – unknown (google) Sep 3 at 1:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.