Created
September 9, 2016 20:05
-
-
Save anonymous/4ac34ebac4d31a031d05e83abca5a536 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
L13: s/forumla/formula/
L8: s/cell/calc/