Skip to content

Instantly share code, notes, and snippets.

Created September 9, 2016 20:05
Show Gist options
  • Save anonymous/4ac34ebac4d31a031d05e83abca5a536 to your computer and use it in GitHub Desktop.
Save anonymous/4ac34ebac4d31a031d05e83abca5a536 to your computer and use it in GitHub Desktop.
perhaps
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%')
)
@doobeh
Copy link

doobeh commented Sep 9, 2016

L13: s/forumla/formula/
L8: s/cell/calc/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment