I want "DBSession.query(Article).group_by(Article.created.month).all()"
But this query can't using
How do I do this using SQLAlchemy?
|
|
I want "DBSession.query(Article).group_by(Article.created.month).all()" But this query can't using How do I do this using SQLAlchemy? |
||
|
|
|
|
assuming you db engine actually supports functions like
else you can group in python like
|
||
|