-
-
Save doobeh/00c1943fbe46d187e155da05f67be082 to your computer and use it in GitHub Desktop.
perhaps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sqlalchemy import func | |
db.session.query( | |
Material.id, | |
Material.formula, | |
func.count().label('calculations') | |
).join( | |
Material.cell | |
).group_by( | |
Material.id, | |
Material.formula | |
).having( | |
Material.forumla.like('%Cd%') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment