Skip to content

Instantly share code, notes, and snippets.

@doobeh
Forked from anonymous/kacey.py
Created September 9, 2016 20:12
Show Gist options
  • Save doobeh/00c1943fbe46d187e155da05f67be082 to your computer and use it in GitHub Desktop.
Save doobeh/00c1943fbe46d187e155da05f67be082 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%')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment