Skip to content

Instantly share code, notes, and snippets.

@douglascayers
Created September 12, 2017 01:24
Show Gist options
  • Select an option

  • Save douglascayers/d79cc215e9924f096cad9605609cacad to your computer and use it in GitHub Desktop.

Select an option

Save douglascayers/d79cc215e9924f096cad9605609cacad to your computer and use it in GitHub Desktop.
Easy way to count attachments or notes by their parent object type. https://twitter.com/DouglasCAyers/status/885892375108866048
SELECT
parent.type,
count(id),
sum(bodyLength)
FROM
Attachment
GROUP BY
parent.type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment