Skip to content

Instantly share code, notes, and snippets.

@thehenster
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thehenster/47fd616a80f8c3997c58 to your computer and use it in GitHub Desktop.
Save thehenster/47fd616a80f8c3997c58 to your computer and use it in GitHub Desktop.
# In rails 3
Post.select(:id, :created_at).count #=> SELECT COUNT(*) FROM posts
# In rails 4
Post.select(:id, :created_at).count #=> SELECT COUNT(id, created_at) FROM posts ... bang
Post.select(:id, :created_at).count(:all) #=> SELECT COUNT(*) FROM posts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment