Skip to content

Instantly share code, notes, and snippets.

@mezod
Last active December 12, 2016 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mezod/ddc3c29be764e44f79f11c7da00d3b9a to your computer and use it in GitHub Desktop.
Save mezod/ddc3c29be764e44f79f11c7da00d3b9a to your computer and use it in GitHub Desktop.
knex('events').select()
.where(knex.raw('events.user_id = users.id'))
.sum('upvotes')
.as('numupvotes')
.count()
.as('numevents')
knex('events').select()
.where(knex.raw('events.user_id = users.id'))
.sum('upvotes')
.as('numupvotes'),
.count()
.as('numevents'),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment