Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8839603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:16:23+00:00 2026-06-14T10:16:23+00:00

I have an ActiveRecord model that has two columns I want to group and

  • 0

I have an ActiveRecord model that has two columns I want to group and sum by (both are integers). The issue I can’t seem to solve is how to sum the first column as a group of the second column, with the second column being grouped by a range.

I know that I can do Model.sum(:first_column, group: :second_column), but this results in many groups, because the second columns values are spread out. How can I group the second columns’ values, e.g. in ranges of 10 (0-9, 10-19, 20-29, etc.)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:16:24+00:00Added an answer on June 14, 2026 at 10:16 am

    You can GROUP BY expressions in SQL, you don’t have to GROUP BY just a column. You can do things like this:

    Model.sum(:first_column, :group => 'second_column / 10')
    

    or like this:

    Model.group('second_column / 10').sum(:first_column)
    

    Both of those should send some SQL like this into the database:

    select sum(first_column), second_column / 10
    from models
    group by second_column / 10
    

    There will be aliases, quoting, … but the effect will be the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ActiveRecord model that has two database attributes, total and processing_fees .
My model has two fields that i want to compare to each other as
Hi guys i have a model livestream which has two columns in the database,
I have a Profile model and two ActiveRecord::Relations of this model. SQL request of
hi I have two rails model class Feedback < ActiveRecord::Base has_many :conversations, :dependent =>
I have two models: Users and Projects. The idea is that Users can follow
So, I have a table that has two dates in it, a start and
I have a user model that has many fields (let's say 30 for this
Basically I have two models: User and Godfather. The godfather table has three columns:
I have three models that look something like this: class Bucket < ActiveRecord::Base has_many

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.